Session 3: Working with Files

ESS: Introduction to Web Scraping and Data Management for Social Scientists

Johannes B. Gruber

2025-07-09

Introduction

This Course

tinytable_g1ubglapcn8j9jh50ozz
Day Session
1 Introduction
2 Data Structures and Wrangling
3 Working with Files
4 Linking and joining data & SQL
5 Scaling, Reporting and Database Software
6 Introduction to the Web
7 Static Web Pages
8 Application Programming Interface (APIs)
9 Interactive Web Pages
10 Building a Reproducible Research Project

The Plan for Today

In this session, you learn:

  • how to use files efficiently and how to solve problems using files
  • good practices for transparent and efficient file usage
  • how to work with many files at the same time
  • and how you can facilitate collaborative working with files

JF Martin via unsplash.com

Files

What are files

  • during analysis, your data resides in memory
  • when the R is closed, the memory is emptied
  • data then needs to be stored in a file (or files) on your disk/network/cloud (or a database)
  • there are many different file types, some better suited for data storage than others (e.g., JPEG vs. XLSX)

Let’s get some files

if (!dir.exists("data/files")) {
  dir.create("data", showWarnings = FALSE)
  # download the zip file containing the data from Weidmann (2023)
  if (!file.exists("data/main.zip")) {
    curl::curl_download(
      url = "https://github.com/nilsbw/dmbook-setup/archive/refs/heads/main.zip", 
      destfile = "data/main.zip"
    )
  }
  # extract the archive
  unzip("data/main.zip", exdir = "data")
  # we are only interested in the files for chapter 4, so we move them up
  file.rename("data/dmbook-setup-main/ch04", "data/files")
  # now we can clean up
  unlink("data/dmbook-setup-main", recursive = TRUE)
}

Now let’s have a look:

list.files("data/files")
 [1] "csv-example-quotes.csv"    "csv-example-semicolon.csv"
 [3] "csv-example.csv"           "journalism.sav"           
 [5] "leaders-twitter.Rdata"     "REFERENCES.md"            
 [7] "terrorism-targets.dta"     "un-secretaries-ascii.txt" 
 [9] "un-secretaries.txt"        "unsc-membership.xls"      

Operating system shenanigans

Windows and macOS annoyingly hide file extensions. I generally recommend you change that:

Windows

macOS

Plain text vs. binary files

Basic difference between file types:

  • some contain information stored as plain text

  • some are binary files that need to be interpreted by a program

Encoding

  • Binary files contain some meta information on how they should be interpreted. Plain text files do not
  • What specific bytes represent which character is defined in the file encoding
  • Unfortunately, there are different standards (e.g., UTF-8, ASCII, Windows-1252)
  • The file itself gives no hint what encoding it uses 😿

Verne Ho via unsplash.com

Encoding: experiment

This file is encoded in UTF-8, which R expects:

readLines("data/files/un-secretaries.txt")
[1] "Trygve Lie"              "Dag Hammarskjöld"       
[3] "U Thant"                 "Kurt Waldheim"          
[5] "Javier Perez de Cuellar" "Boutros Boutros-Ghali"  
[7] "Kofi Annan"              "Ban Ki-Moon"            
[9] "António Guterres"       

Dag Hammarskjöld and António Guterres have names with letters that do not exist in the English alphabet and thus do not exist in the American Standard Code for Information Interchange (ASCII), one of the oldest encoding standards.

If we try to open the other file, where someone saved the same data, but with a different encoding:

readLines("data/files/un-secretaries-ascii.txt")
[1] "Trygve Lie"              "Dag Hammarskj??ld"      
[3] "U Thant"                 "Kurt Waldheim"          
[5] "Javier Perez de Cuellar" "Boutros Boutros-Ghali"  
[7] "Kofi Annan"              "Ban Ki-Moon"            
[9] "Ant??nio Guterres"      

Encoding: pitfall

A common mishap is that people using Microsoft Windows use this program to open text files:

It has the very annoying habit of forcing a different encoding.

file.copy("data/files/un-secretaries.txt", "data/files/un-secretaries_win.txt")
[1] FALSE

Let’s open this file with Notepad, do nothing and just save it (or open it in RStuido and use File -> Save with Encoding)

readLines("data/files/un-secretaries_win.txt")
[1] "Trygve Lie"              "Dag Hammarskj\xf6ld"    
[3] "U Thant"                 "Kurt Waldheim"          
[5] "Javier Perez de Cuellar" "Boutros Boutros-Ghali"  
[7] "Kofi Annan"              "Ban Ki-Moon"            
[9] "Ant\xf3nio Guterres"    

Encoding: pitfall

You can sometimes return from something like that, but it’s almost never straightforward. We can guess the encoding based on some patterns in the text:

readr::guess_encoding("data/files/un-secretaries_win.txt")
# A tibble: 1 × 2
  encoding   confidence
  <chr>           <dbl>
1 ISO-8859-1       0.21
# ISO-8859-1 is an alias for windows-1252

And can either convert the input or use a function that can work with different encodings:

readLines("data/files/un-secretaries_win.txt") |>
  stringi::stri_encode(from = "ISO-8859-1", to = "UTF-8")
[1] "Trygve Lie"              "Dag Hammarskjöld"       
[3] "U Thant"                 "Kurt Waldheim"          
[5] "Javier Perez de Cuellar" "Boutros Boutros-Ghali"  
[7] "Kofi Annan"              "Ban Ki-Moon"            
[9] "António Guterres"       
readr::read_csv(file = "data/files/un-secretaries_win.txt", locale = readr::locale(encoding = "ISO-8859-1"))
# A tibble: 8 × 1
  `Trygve Lie`           
  <chr>                  
1 Dag Hammarskjöld       
2 U Thant                
3 Kurt Waldheim          
4 Javier Perez de Cuellar
5 Boutros Boutros-Ghali  
6 Kofi Annan             
7 Ban Ki-Moon            
8 António Guterres       

File formats for tabular data: CSV

  • Comma-Separated Values (CSV)
  • plain text file
  • data must be perfectly rectangular (each line must have the same number of cells)
  • many functions to read (and write) CSV files: read.csv, readr::read_csv, data.table::fread
readLines("data/files/csv-example.csv") |> 
  head(15)
 [1] "numa,ida,numb,idb,kmdist,midist" "2,USA,20,CAN,738.31,460.56"     
 [3] "2,USA,31,BHM,1639.23,1022.12"    "2,USA,40,CUB,1831.13,1141.3"    
 [5] "2,USA,41,HAI,2308.86,1439.25"    "2,USA,42,DOM,2381.58,1485.71"   
 [7] "2,USA,51,JAM,2338.15,1458.44"    "2,USA,52,TRI,3528.94,2200.79"   
 [9] "2,USA,53,BAR,3363.3,2096.76"     "2,USA,54,DMA,3240.08,2021.01"   
[11] "2,USA,55,GRN,3365.32,2098.78"    "2,USA,56,SLU,3211.8,2002.83"    
[13] "2,USA,57,SVG,3272.4,2040.2"      "2,USA,58,AAB,2862.34,1784.67"   
[15] "2,USA,60,SKN,2787.6,1738.21"    
rio::import("data/files/csv-example.csv")
    numa ida numb idb   kmdist   midist
1      2 USA   20 CAN   738.31   460.56
2      2 USA   31 BHM  1639.23  1022.12
3      2 USA   40 CUB  1831.13  1141.30
4      2 USA   41 HAI  2308.86  1439.25
5      2 USA   42 DOM  2381.58  1485.71
6      2 USA   51 JAM  2338.15  1458.44
7      2 USA   52 TRI  3528.94  2200.79
8      2 USA   53 BAR  3363.30  2096.76
9      2 USA   54 DMA  3240.08  2021.01
10     2 USA   55 GRN  3365.32  2098.78
11     2 USA   56 SLU  3211.80  2002.83
12     2 USA   57 SVG  3272.40  2040.20
13     2 USA   58 AAB  2862.34  1784.67
14     2 USA   60 SKN  2787.60  1738.21
15     2 USA   80 BLZ  2632.06  1641.25
16     2 USA   70 MEX  3054.24  1903.85
17     2 USA   90 GUA  3022.93  1884.66
18     2 USA   91 HON  2951.22  1840.22
19     2 USA   92 SAL  3054.24  1904.86
20     2 USA   93 NIC  3134.03  1954.35
21     2 USA   94 COS  3314.82  2067.47
22     2 USA   95 PAN  3358.25  2093.73
23     2 USA  100 COL  3846.08  2397.74
24     2 USA  101 VEN  3382.49  2108.88
25     2 USA  110 GUY  4049.09  2525.00
26     2 USA  115 SUR  4315.73  2690.64
27     2 USA  130 ECU  4357.14  2716.90
28     2 USA  135 PER  5707.51  3558.23
29     2 USA  140 BRA  6789.22  4233.92
30     2 USA  145 BOL  6231.70  3885.47
31     2 USA  150 PAR  7456.83  4650.04
32     2 USA  155 CHL  8095.15  5046.97
33     2 USA  160 ARG  8401.18  5238.87
34     2 USA  165 URU  8465.82  5278.26
35     2 USA  200  UK  5991.32  3735.99
36     2 USA  205 IRE  5499.45  3428.95
37     2 USA  210 NTH  6259.98  3903.65
38     2 USA  211 BEL  6308.46  3932.94
39     2 USA  212 LUX  6444.81  4018.79
40     2 USA  220 FRN  6255.94  3900.62
41     2 USA  221 MNC  6819.52  4252.10
42     2 USA  223 LIE  6794.27  4236.95
43     2 USA  225 SWZ  6695.29  4175.34
44     2 USA  230 SPN  6166.05  3844.06
45     2 USA  232 AND  6446.83  4019.80
46     2 USA  235 POR  5816.59  3626.91
47     2 USA  255 GMY  6806.39  4244.02
48     2 USA  260 GFR  6496.32  4051.11
49     2 USA  265 GDR  6806.39  4244.02
50     2 USA  290 POL  7268.97  4532.88
51     2 USA  300 AUH  7201.30  4490.46
52     2 USA  305 AUS  7201.30  4490.46
53     2 USA  310 HUN  7441.68  4639.94
54     2 USA  315 CZE  6974.05  4348.05
55     2 USA  316 CZR  6974.05  4348.05
56     2 USA  317 SLO  7254.83  4523.79
57     2 USA  325 ITA  7345.73  4580.35
58     2 USA  331 SNM  7175.04  4474.30
59     2 USA  338 MLT  7804.27  4866.18
60     2 USA  339 ALB  7854.77  4897.49
61     2 USA  345 SER  7711.35  4807.60
62     2 USA  341 MNG  7730.54  4820.73
63     2 USA  343 MAC  7911.33  4932.84
64     2 USA  344 CRO  7347.75  4581.36
65     2 USA  345 YUG  7711.35  4807.60
66     2 USA  346 BOS  7637.62  4762.15
67     2 USA  349 SLV  7193.22  4485.41
68     2 USA  350 GRC  8326.44  5192.41
69     2 USA  352 CYP  9210.19  5742.86
70     2 USA  355 BUL  8031.52  5007.58
71     2 USA  359 MLD  8049.70  5018.69
72     2 USA  360 RUM  8086.06  5041.92
73     2 USA  365 RUS  7951.73  4958.09
74     2 USA  366 EST  7050.81  4396.53
75     2 USA  367 LAT  7197.26  4488.44
76     2 USA  368 LIT  7393.20  4609.64
77     2 USA  369 UKR  7936.58  4949.00
78     2 USA  370 BLR  7575.00  4722.76
79     2 USA  371 ARM  9512.18  5930.72
80     2 USA  372 GRG  9527.33  5940.82
81     2 USA  373 AZE  9805.08  6113.53
82     2 USA  375 FIN  7003.34  4367.24
83     2 USA  380 SWD  6713.47  4186.45
84     2 USA  385 NOR  6322.60  3942.03
85     2 USA  390 DEN  6600.35  4115.75
86     2 USA  395 ICE  4571.26  2850.22
87     2 USA  402 CAP  5772.15  3599.64
88     2 USA  403 STP  9506.12  5927.69
89     2 USA  404 GNB  6828.61  4258.16
90     2 USA  411 EQG  9698.02  6046.87
91     2 USA  420 GAM  6605.40  4118.78
92     2 USA  432 MLI  7426.53  4630.85
93     2 USA  433 SEN  6464.00  4030.91
94     2 USA  434 BEN  8772.86  5470.16
95     2 USA  435 MAA  6332.70  3948.09
96     2 USA  436 NIR  8247.66  5142.92
97     2 USA  437 CDI  8073.94  5033.84
98     2 USA  438 GUI  7143.73  4454.10
99     2 USA  439 BFO  7996.17  4986.37
100    2 USA  450 LBR  7602.27  4739.93
101    2 USA  451 SIE  7243.72  4516.72
102    2 USA  452 GHA  8625.40  5378.25
103    2 USA  461 TOG  8644.59  5390.37
104    2 USA  471 CAO  9753.57  6081.21
105    2 USA  475 NIG  8831.44  5506.52
106    2 USA  481 GAB  9792.96  6106.46
107    2 USA  482 CEN 10311.09  6429.66
108    2 USA  483 CHA  9431.38  5881.23
109    2 USA  484 CON 10588.84  6602.37
110    2 USA  490 DRC 10588.84  6602.37
111    2 USA  500 UGA 11790.74  7351.79
112    2 USA  501 KEN 12237.16  7629.54
113    2 USA  510 TAZ 12817.91  7992.13
114    2 USA  511 ZAN 12812.86  7989.10
115    2 USA  516 BUI 11739.23  7319.47
116    2 USA  517 RWA 11672.57  7278.06
117    2 USA  520 SOM 12707.82  7923.45
118    2 USA  522 DJI 11770.54  7339.67
119    2 USA  530 ETH 11628.13  7249.78
120    2 USA  531 ERI 11151.41  6952.84
121    2 USA  540 ANG 10683.78  6661.96
122    2 USA  541 MZM 13537.03  8440.57
123    2 USA  551 ZAM 12498.75  7793.16
124    2 USA  552 ZIM 12848.21  8011.32
125    2 USA  553 MAW 12816.90  7992.13
126    2 USA  560 SAF 13118.89  8179.99
127    2 USA  563 TRA 13118.89  8179.99
128    2 USA  564 OFS 13178.48  8217.36
129    2 USA  565 NAM 11976.58  7467.94
130    2 USA  570 LES 13254.23  8264.83
131    2 USA  571 BOT 12857.30  8016.37
132    2 USA  572 SWA 13419.87  8367.85
133    2 USA  580 MAG 14367.25  8958.70
134    2 USA  581 COM 13516.83  8427.44
135    2 USA  590 MAS 15357.05  9575.81
136    2 USA  591 SEY 14051.12  8761.75
137    2 USA  600 MOR  6248.87  3896.58
138    2 USA  615 ALG  6892.24  4297.55
139    2 USA  616 TUN  7450.77  4646.00
140    2 USA  620 LIB  7952.74  4959.10
141    2 USA  625 SUD 10682.77  6660.95
142    2 USA  630 IRN 10335.33  6444.81
143    2 USA  640 TUR  8869.82  5530.76
144    2 USA  645 IRQ 10087.88  6290.28
145    2 USA  651 EGY  9448.55  5891.33
146    2 USA  652 SYR  9564.70  5964.05
147    2 USA  660 LEB  9505.11  5926.68
148    2 USA  663 JOR  9693.98  6044.85
149    2 USA  666 ISR  9543.49  5950.92
150    2 USA  670 SAU 11007.99  6863.96
151    2 USA  678 YAR 11571.57  7215.44
152    2 USA  679 YEM 11571.57  7215.44
153    2 USA  680 YPR 11875.58  7404.31
154    2 USA  690 KUW 10659.54  6646.81
155    2 USA  692 BAH 11127.17  6938.70
156    2 USA  694 QAT 11169.59  6963.95
157    2 USA  696 UAE 11501.88  7172.01
158    2 USA  698 OMA 11832.15  7378.05
159    2 USA  700 AFG 11295.84  7043.74
160    2 USA  701 TKM 10511.07  6553.89
161    2 USA  702 TAJ 10881.74  6785.18
162    2 USA  703 KYR 10671.66  6653.88
163    2 USA  704 UZB 10598.94  6609.44
164    2 USA  705 KZK 10645.40  6637.72
165    2 USA  710 CHN 11348.36  7076.06
166    2 USA  711 TBT 12415.93  7741.65
167    2 USA  712 MON 10549.45  6578.13
168    2 USA  713 TAW 12774.48  7964.86
169    2 USA  730 KOR 11330.18  7063.94
170    2 USA  731 PRK 11156.46  6955.87
171    2 USA  732 ROK 11330.18  7063.94
172    2 USA  740 JPN 11069.60  6902.34
173    2 USA  750 IND 12227.06  7623.48
174    2 USA  760 BHU 12676.51  7904.26
175    2 USA  770 PAK 11545.31  7199.28
176    2 USA  771 BNG 13130.00  8187.06
177    2 USA  775 MYA 13997.59  8727.41
178    2 USA  780 SRI 14613.69  9112.22
179    2 USA  790 NEP 12575.51  7841.64
180    2 USA  781 MAD 14550.06  9072.83
181    2 USA  800 THI 14369.27  8959.71
182    2 USA  811 CAM 14598.54  9103.13
183    2 USA  812 LAO 13924.87  8681.96
184    2 USA  815 VNM 14622.78  9117.27
185    2 USA  816 DRV 13480.47  8405.22
186    2 USA  817 RVN 14622.78  9118.28
187    2 USA  820 MAL 15503.50  9666.71
188    2 USA  830 SIN 15727.72  9806.09
189    2 USA  835 BRU 15190.40  9471.78
190    2 USA  840 PHI 13972.34  8712.26
191    2 USA  850 INS 16500.37 10288.87
192    2 USA  860 ETM 16112.53 10046.47
193    2 USA  900 AUL 16082.23 10028.29
194    2 USA  910 PNG 14641.97  9129.39
195    2 USA  920 NEW 14198.58  8852.65
196    2 USA  935 VAN 13476.43  8403.20
197    2 USA  940 SOL 13607.73  8485.01
198    2 USA  950 FJI 12603.79  7858.81
199    2 USA  983 MSI 11574.60  7216.45
200    2 USA  986 PAL 14054.15  8762.76
201    2 USA  987 FSM 12505.82  7798.21
202    2 USA  990 WSM 12850.23  8012.33

File formats for tabular data: CSV

  • like encoding: no single standard for CSV files
    • semicolon separators
    • comma in cells might be interpreted as separator
  • downside :
    • no meta-information about encoding, separators, quoting
  • advantages :
    • open format that is completely transparent
    • general compatibility with data processing and analysis tools
    • most commonly used file types for data storage (network effect)
readLines("data/files/csv-example-semicolon.csv") |> 
  head(15)
 [1] "numa;ida;numb;idb;kmdist;midist" "2;USA; 20;CAN;  738,31;  460,56"
 [3] "2;USA; 31;BHM; 1639,23; 1022,12" "2;USA; 40;CUB; 1831,13; 1141,30"
 [5] "2;USA; 41;HAI; 2308,86; 1439,25" "2;USA; 42;DOM; 2381,58; 1485,71"
 [7] "2;USA; 51;JAM; 2338,15; 1458,44" "2;USA; 52;TRI; 3528,94; 2200,79"
 [9] "2;USA; 53;BAR; 3363,30; 2096,76" "2;USA; 54;DMA; 3240,08; 2021,01"
[11] "2;USA; 55;GRN; 3365,32; 2098,78" "2;USA; 56;SLU; 3211,80; 2002,83"
[13] "2;USA; 57;SVG; 3272,40; 2040,20" "2;USA; 58;AAB; 2862,34; 1784,67"
[15] "2;USA; 60;SKN; 2787,60; 1738,21"
readLines("data/files/csv-example-quotes.csv") |> 
  head(15)
 [1] "numa,ida,numb,idb,kmdist,midist,capnamea"       
 [2] "2,USA,20,CAN,738.31,460.56,\"Washington, DC\""  
 [3] "2,USA,31,BHM,1639.23,1022.12,\"Washington, DC\""
 [4] "2,USA,40,CUB,1831.13,1141.3,\"Washington, DC\"" 
 [5] "2,USA,41,HAI,2308.86,1439.25,\"Washington, DC\""
 [6] "2,USA,42,DOM,2381.58,1485.71,\"Washington, DC\""
 [7] "2,USA,51,JAM,2338.15,1458.44,\"Washington, DC\""
 [8] "2,USA,52,TRI,3528.94,2200.79,\"Washington, DC\""
 [9] "2,USA,53,BAR,3363.3,2096.76,\"Washington, DC\"" 
[10] "2,USA,54,DMA,3240.08,2021.01,\"Washington, DC\""
[11] "2,USA,55,GRN,3365.32,2098.78,\"Washington, DC\""
[12] "2,USA,56,SLU,3211.8,2002.83,\"Washington, DC\"" 
[13] "2,USA,57,SVG,3272.4,2040.2,\"Washington, DC\""  
[14] "2,USA,58,AAB,2862.34,1784.67,\"Washington, DC\""
[15] "2,USA,60,SKN,2787.6,1738.21,\"Washington, DC\"" 

File formats for tabular data: Excel

  • two types: XLS (legacy XML format) or XLSX (really an archive)
  • binary file type of MS Excel
  • does not impose a strict tabular structure
  • one column can contain several data types (character, numeric, date)
  • each file can contain several sheets
  • many functions to read (and write) Excel files: readxl::read_xls/readxl::read_xlsx, openxlsx::read.xlsx, data.table::fread
rio::import("data/files/unsc-membership.xls", sheet = "data")
      aclpcode                        aclpname code year unsc
1            1                         Algeria  DZA 1951    .
2            2                          Angola  AGO 1951    .
3            3                           Benin  BEN 1951    .
4            4                        Botswana  BWA 1951    .
5            5                    Burkina Faso  BFA 1951    .
6            6                         Burundi  BDI 1951    .
7            7                        Cameroon  CMR 1951    .
8            8                      Cape Verde  CPV 1951    .
9            9        Central African Republic  CAF 1951    .
10          10                            Chad  TCD 1951    .
11          11                         Comoros  COM 1951    .
12          12                           Congo  COG 1951    .
13          13                        Djibouti  DJI 1951    .
14          14                Egypt, Arab Rep.  EGY 1951    0
15          15                        Ethiopia    . 1951    0
16          16                           Gabon  GAB 1951    .
17          17                     Gambia, The  GMB 1951    .
18          18                           Ghana  GHA 1951    .
19          19                          Guinea  GIN 1951    .
20          20                   Guinea-Bissau  GNB 1951    .
21          21                   Cote d'Ivoire  CIV 1951    .
22          22                           Kenya  KEN 1951    .
23          23                         Lesotho  LSO 1951    .
24          24                         Liberia  LBR 1951    0
25          25                      Madagascar  MDG 1951    .
26          26                          Malawi  MWI 1951    .
27          27                            Mali  MLI 1951    .
28          28                      Mauritania  MRT 1951    .
29          29                       Mauritius  MUS 1951    .
30          30                         Morocco  MAR 1951    .
31          31                      Mozambique  MOZ 1951    .
32          32                           Niger  NER 1951    .
33          33                         Nigeria  NGA 1951    .
34          34                          Rwanda  RWA 1951    .
35          35                         Senegal  SEN 1951    .
36          36                      Seychelles  SYC 1951    .
37          37                    Sierra Leone  SLE 1951    .
38          38                         Somalia  SOM 1951    .
39          39                    South Africa  ZAF 1951    0
40          40                           Sudan  SDN 1951    .
41          41                       Swaziland  SWZ 1951    .
42          42                        Tanzania  TZA 1951    .
43          43                            Togo  TGO 1951    .
44          44                         Tunisia  TUN 1951    .
45          45                          Uganda  UGA 1951    .
46          46                           Zaire  ZAR 1951    .
47          47                          Zambia  ZMB 1951    .
48          48                        Zimbabwe  ZWE 1951    .
49          49                    Bahamas, The  BHS 1951    .
50          50                        Barbados  BRB 1951    .
51          51                          Belize  BLZ 1951    .
52          52                          Canada  CAN 1951    0
53          53                      Costa Rica  CRI 1951    0
54          54              Dominican Republic  DOM 1951    0
55          55                     El Salvador  SLV 1951    0
56          56                         Grenada  GRD 1951    .
57          57                       Guatemala  GTM 1951    0
58          58                           Haiti  HTI 1951    0
59          59                        Honduras  HND 1951    0
60          60                         Jamaica  JAM 1951    .
61          61                          Mexico  MEX 1951    0
62          62                       Nicaragua  NIC 1951    0
63          63                          Panama  PAN 1951    0
64          64             Trinidad and Tobago  TTO 1951    .
65          66                       Argentina  ARG 1951    0
66          67                         Bolivia  BOL 1951    0
67          68                          Brazil  BRA 1951    1
68          69                           Chile  CHL 1951    0
69          70                        Colombia  COL 1951    0
70          71                         Ecuador  ECU 1951    1
71          72                          Guyana  GUY 1951    .
72          73                        Paraguay  PRY 1951    0
73          74                            Peru  PER 1951    0
74          75                        Suriname  SUR 1951    .
75          76                         Uruguay  URY 1951    0
76          77                       Venezuela  VEN 1951    0
77          78                      Bangladesh  BGD 1951    .
78          80                           India  IND 1951    1
79          81                       Indonesia  IDN 1951    0
80          82              Iran, Islamic Rep.  IRN 1951    0
81          83                            Iraq  IRQ 1951    0
82          84                          Israel  ISR 1951    0
83          85                           Japan  JPN 1951    0
84          86                          Jordan  JOR 1951    0
85          87             Korea, South (Rep.)  KOR 1951    0
86          88                        Laos PDR  LAO 1951    .
87          89                        Malaysia  MYS 1951    .
88          90                        Mongolia  MNG 1951    0
89          91                         Myanmar  MMR 1951    0
90          92                           Nepal  NPL 1951    0
91          93                        Pakistan  PAK 1951    0
92          94                     Philippines  PHL 1951    0
93          95                       Singapore  SGP 1951    .
94          96                       Sri Lanka  LKA 1951    0
95          97            Syrian Arab Republic  SYR 1951    0
96          98                          Taiwan    . 1951    0
97          99                        Thailand  THA 1951    0
98         100             Yemen Arab Republic    . 1951    .
99         101                         Austria  AUT 1951    0
100        102                         Belgium  BEL 1951    0
101        103                        Bulgaria  BGR 1951    0
102        104                  Czechoslovakia    . 1951    0
103        105                         Denmark  DNK 1951    0
104        106                         Finland  FIN 1951    0
105        108                   Germany, West    . 1951    0
106        109                   Germany, East    . 1951    0
107        110                          Greece  GRC 1951    0
108        111                         Hungary  HUN 1951    0
109        112                         Iceland  ISL 1951    0
110        113                         Ireland  IRL 1951    0
111        114                           Italy  ITA 1951    0
112        115                      Luxembourg  LUX 1951    0
113        116                           Malta  MLT 1951    .
114        117                     Netherlands  NLD 1951    1
115        118                          Norway  NOR 1951    0
116        119                          Poland  POL 1951    0
117        120                        Portugal  PRT 1951    0
118        121                         Romania  ROM 1951    0
119        122                           Spain  ESP 1951    0
120        123                          Sweden  SWE 1951    0
121        124                     Switzerland  CHE 1951    0
122        125                          Turkey  TUR 1951    1
123        128                      Yugoslavia    . 1951    1
124        129                       Australia  AUS 1951    0
125        130                            Fiji  FJI 1951    .
126        131                     New Zealand  NZL 1951    0
127        132                Papua New Guinea  PNG 1951    .
128        133                 Solomon Islands  SLB 1951    .
129        134                         Vanuatu  VUT 1951    .
130        135                   Western Samoa  WSM 1951    .
131        136                         Bahrain  BHR 1951    .
132        137                          Kuwait  KWT 1951    .
133        138                            Oman  OMN 1951    0
134        139                           Qatar  QAT 1951    .
135        140                    Saudi Arabia  SAU 1951    0
136        141            United Arab Emirates  ARE 1951    .
137        142                     Afghanistan  AFG 1951    0
138        143                         Albania  ALB 1951    0
139        144                         Antigua  ATG 1951    .
140        145                         Armenia  ARM 1951    .
141        146                           Nauru    . 1951    .
142        147                      Azerbaijan  AZE 1951    .
143        148                          Bhutan  BTN 1951    .
144        149                         Belarus  BLR 1951    .
145        150              Bosnia-Herzegovina  BIH 1951    .
146        151                          Brunei  BRN 1951    .
147        152                        Cambodia  KHM 1951    .
148        153                         Croatia  HRV 1951    .
149        154                            Cuba  CUB 1951    0
150        155                  Czech Republic  CZE 1951    .
151        156                 Slovak Republic  SVK 1951    .
152        157                        Dominica  DMA 1951    .
153        158               Equatorial Guinea  GNQ 1951    .
154        159                         Estonia  EST 1951    .
155        160                         Eritrea  ERI 1951    .
156        161                         Georgia  GEO 1951    .
157        162                      Kazakhstan  KAZ 1951    .
158        163                        Kiribati  KIR 1951    .
159        164        Korea, North (Dem. Rep.)  PRK 1951    0
160        165                      Kyrgyzstan  KGZ 1951    .
161        166                          Latvia  LVA 1951    .
162        167                         Lebanon  LBN 1951    0
163        168                       Lithuania  LTU 1951    .
164        169                       Macedonia  MKD 1951    .
165        170                 Maldive Islands  MDV 1951    .
166        171                         Moldova  MDA 1951    .
167        172                         Namibia  NAM 1951    .
168        174                       St. Lucia  LCA 1951    .
169        175           Sao Tome and Principe  STP 1951    .
170        176                        Slovenia  SVN 1951    .
171        177                      Somaliland    . 1951    .
172        178               Yemen PDR (South)    . 1951    .
173        179             St. Kitts and Nevis  KNA 1951    .
174        180                     St. Vincent  VCT 1951    .
175        181                      Tajikistan  TJK 1951    .
176        182                    Turkmenistan  TKM 1951    .
177        183                         Ukraine  UKR 1951    .
178        184                           Tonga  TON 1951    .
179        185                      Uzbekistan  UZB 1951    .
180        186                         Vietnam  VNM 1951    .
181        187                          Cyprus  CYP 1951    .
182        188                    Greek Cyprus    . 1951    .
183        189 Micronesia, Federated States of  FSM 1951    .
184        190               Republic of Yemen  YEM 1951    .
185        191                         Germany  DEU 1951    .
186        192                     Yugoslavia2  YUG 1951    .
187        193                           Libya  LBY 1951    .
188        194                       Ethiopia2  ETH 1951    .
189        195                         Andorra  ADO 1951    .
190        196                   Liechtenstein  LIE 1951    .
191        197                Marshall Islands  MHL 1951    .
192        198                           Palau  PLW 1951    .
193        199                      San Marino  SMR 1951    .
194          1                         Algeria  DZA 1952    .
195          2                          Angola  AGO 1952    .
196          3                           Benin  BEN 1952    .
197          4                        Botswana  BWA 1952    .
198          5                    Burkina Faso  BFA 1952    .
199          6                         Burundi  BDI 1952    .
200          7                        Cameroon  CMR 1952    .
201          8                      Cape Verde  CPV 1952    .
202          9        Central African Republic  CAF 1952    .
203         10                            Chad  TCD 1952    .
204         11                         Comoros  COM 1952    .
205         12                           Congo  COG 1952    .
206         13                        Djibouti  DJI 1952    .
207         14                Egypt, Arab Rep.  EGY 1952    0
208         15                        Ethiopia    . 1952    0
209         16                           Gabon  GAB 1952    .
210         17                     Gambia, The  GMB 1952    .
211         18                           Ghana  GHA 1952    .
212         19                          Guinea  GIN 1952    .
213         20                   Guinea-Bissau  GNB 1952    .
214         21                   Cote d'Ivoire  CIV 1952    .
215         22                           Kenya  KEN 1952    .
216         23                         Lesotho  LSO 1952    .
217         24                         Liberia  LBR 1952    0
218         25                      Madagascar  MDG 1952    .
219         26                          Malawi  MWI 1952    .
220         27                            Mali  MLI 1952    .
221         28                      Mauritania  MRT 1952    .
222         29                       Mauritius  MUS 1952    .
223         30                         Morocco  MAR 1952    .
224         31                      Mozambique  MOZ 1952    .
225         32                           Niger  NER 1952    .
226         33                         Nigeria  NGA 1952    .
227         34                          Rwanda  RWA 1952    .
228         35                         Senegal  SEN 1952    .
229         36                      Seychelles  SYC 1952    .
230         37                    Sierra Leone  SLE 1952    .
231         38                         Somalia  SOM 1952    .
232         39                    South Africa  ZAF 1952    0
233         40                           Sudan  SDN 1952    .
234         41                       Swaziland  SWZ 1952    .
235         42                        Tanzania  TZA 1952    .
236         43                            Togo  TGO 1952    .
237         44                         Tunisia  TUN 1952    .
238         45                          Uganda  UGA 1952    .
239         46                           Zaire  ZAR 1952    .
240         47                          Zambia  ZMB 1952    .
241         48                        Zimbabwe  ZWE 1952    .
242         49                    Bahamas, The  BHS 1952    .
243         50                        Barbados  BRB 1952    .
244         51                          Belize  BLZ 1952    .
245         52                          Canada  CAN 1952    0
246         53                      Costa Rica  CRI 1952    0
247         54              Dominican Republic  DOM 1952    0
248         55                     El Salvador  SLV 1952    0
249         56                         Grenada  GRD 1952    .
250         57                       Guatemala  GTM 1952    0
251         58                           Haiti  HTI 1952    0
252         59                        Honduras  HND 1952    0
253         60                         Jamaica  JAM 1952    .
254         61                          Mexico  MEX 1952    0
255         62                       Nicaragua  NIC 1952    0
256         63                          Panama  PAN 1952    0
257         64             Trinidad and Tobago  TTO 1952    .
258         66                       Argentina  ARG 1952    0
259         67                         Bolivia  BOL 1952    0
260         68                          Brazil  BRA 1952    1
261         69                           Chile  CHL 1952    1
262         70                        Colombia  COL 1952    0
263         71                         Ecuador  ECU 1952    0
264         72                          Guyana  GUY 1952    .
265         73                        Paraguay  PRY 1952    0
266         74                            Peru  PER 1952    0
267         75                        Suriname  SUR 1952    .
268         76                         Uruguay  URY 1952    0
269         77                       Venezuela  VEN 1952    0
270         78                      Bangladesh  BGD 1952    .
271         80                           India  IND 1952    0
272         81                       Indonesia  IDN 1952    0
273         82              Iran, Islamic Rep.  IRN 1952    0
274         83                            Iraq  IRQ 1952    0
275         84                          Israel  ISR 1952    0
276         85                           Japan  JPN 1952    0
277         86                          Jordan  JOR 1952    0
278         87             Korea, South (Rep.)  KOR 1952    0
279         88                        Laos PDR  LAO 1952    .
280         89                        Malaysia  MYS 1952    .
281         90                        Mongolia  MNG 1952    0
282         91                         Myanmar  MMR 1952    0
283         92                           Nepal  NPL 1952    0
284         93                        Pakistan  PAK 1952    1
285         94                     Philippines  PHL 1952    0
286         95                       Singapore  SGP 1952    .
287         96                       Sri Lanka  LKA 1952    0
288         97            Syrian Arab Republic  SYR 1952    0
289         98                          Taiwan    . 1952    0
290         99                        Thailand  THA 1952    0
291        100             Yemen Arab Republic    . 1952    .
292        101                         Austria  AUT 1952    0
293        102                         Belgium  BEL 1952    0
294        103                        Bulgaria  BGR 1952    0
295        104                  Czechoslovakia    . 1952    0
296        105                         Denmark  DNK 1952    0
297        106                         Finland  FIN 1952    0
298        108                   Germany, West    . 1952    0
299        109                   Germany, East    . 1952    0
300        110                          Greece  GRC 1952    1
301        111                         Hungary  HUN 1952    0
302        112                         Iceland  ISL 1952    0
303        113                         Ireland  IRL 1952    0
304        114                           Italy  ITA 1952    0
305        115                      Luxembourg  LUX 1952    0
306        116                           Malta  MLT 1952    .
307        117                     Netherlands  NLD 1952    1
308        118                          Norway  NOR 1952    0
309        119                          Poland  POL 1952    0
310        120                        Portugal  PRT 1952    0
311        121                         Romania  ROM 1952    0
312        122                           Spain  ESP 1952    0
313        123                          Sweden  SWE 1952    0
314        124                     Switzerland  CHE 1952    0
315        125                          Turkey  TUR 1952    1
316        128                      Yugoslavia    . 1952    0
317        129                       Australia  AUS 1952    0
318        130                            Fiji  FJI 1952    .
319        131                     New Zealand  NZL 1952    0
320        132                Papua New Guinea  PNG 1952    .
321        133                 Solomon Islands  SLB 1952    .
322        134                         Vanuatu  VUT 1952    .
323        135                   Western Samoa  WSM 1952    .
324        136                         Bahrain  BHR 1952    .
325        137                          Kuwait  KWT 1952    .
326        138                            Oman  OMN 1952    0
327        139                           Qatar  QAT 1952    .
328        140                    Saudi Arabia  SAU 1952    0
329        141            United Arab Emirates  ARE 1952    .
330        142                     Afghanistan  AFG 1952    0
331        143                         Albania  ALB 1952    0
332        144                         Antigua  ATG 1952    .
333        145                         Armenia  ARM 1952    .
334        146                           Nauru    . 1952    .
335        147                      Azerbaijan  AZE 1952    .
336        148                          Bhutan  BTN 1952    .
337        149                         Belarus  BLR 1952    .
338        150              Bosnia-Herzegovina  BIH 1952    .
339        151                          Brunei  BRN 1952    .
340        152                        Cambodia  KHM 1952    .
341        153                         Croatia  HRV 1952    .
342        154                            Cuba  CUB 1952    0
343        155                  Czech Republic  CZE 1952    .
344        156                 Slovak Republic  SVK 1952    .
345        157                        Dominica  DMA 1952    .
346        158               Equatorial Guinea  GNQ 1952    .
347        159                         Estonia  EST 1952    .
348        160                         Eritrea  ERI 1952    .
349        161                         Georgia  GEO 1952    .
350        162                      Kazakhstan  KAZ 1952    .
351        163                        Kiribati  KIR 1952    .
352        164        Korea, North (Dem. Rep.)  PRK 1952    0
353        165                      Kyrgyzstan  KGZ 1952    .
354        166                          Latvia  LVA 1952    .
355        167                         Lebanon  LBN 1952    0
356        168                       Lithuania  LTU 1952    .
357        169                       Macedonia  MKD 1952    .
358        170                 Maldive Islands  MDV 1952    .
359        171                         Moldova  MDA 1952    .
360        172                         Namibia  NAM 1952    .
361        174                       St. Lucia  LCA 1952    .
362        175           Sao Tome and Principe  STP 1952    .
363        176                        Slovenia  SVN 1952    .
364        177                      Somaliland    . 1952    .
365        178               Yemen PDR (South)    . 1952    .
366        179             St. Kitts and Nevis  KNA 1952    .
367        180                     St. Vincent  VCT 1952    .
368        181                      Tajikistan  TJK 1952    .
369        182                    Turkmenistan  TKM 1952    .
370        183                         Ukraine  UKR 1952    .
371        184                           Tonga  TON 1952    .
372        185                      Uzbekistan  UZB 1952    .
373        186                         Vietnam  VNM 1952    .
374        187                          Cyprus  CYP 1952    .
375        188                    Greek Cyprus    . 1952    .
376        189 Micronesia, Federated States of  FSM 1952    .
377        190               Republic of Yemen  YEM 1952    .
378        191                         Germany  DEU 1952    .
379        192                     Yugoslavia2  YUG 1952    .
380        193                           Libya  LBY 1952    0
381        194                       Ethiopia2  ETH 1952    .
382        195                         Andorra  ADO 1952    .
383        196                   Liechtenstein  LIE 1952    .
384        197                Marshall Islands  MHL 1952    .
385        198                           Palau  PLW 1952    .
386        199                      San Marino  SMR 1952    .
387          1                         Algeria  DZA 1953    .
388          2                          Angola  AGO 1953    .
389          3                           Benin  BEN 1953    .
390          4                        Botswana  BWA 1953    .
391          5                    Burkina Faso  BFA 1953    .
392          6                         Burundi  BDI 1953    .
393          7                        Cameroon  CMR 1953    .
394          8                      Cape Verde  CPV 1953    .
395          9        Central African Republic  CAF 1953    .
396         10                            Chad  TCD 1953    .
397         11                         Comoros  COM 1953    .
398         12                           Congo  COG 1953    .
399         13                        Djibouti  DJI 1953    .
400         14                Egypt, Arab Rep.  EGY 1953    0
401         15                        Ethiopia    . 1953    0
402         16                           Gabon  GAB 1953    .
403         17                     Gambia, The  GMB 1953    .
404         18                           Ghana  GHA 1953    .
405         19                          Guinea  GIN 1953    .
406         20                   Guinea-Bissau  GNB 1953    .
407         21                   Cote d'Ivoire  CIV 1953    .
408         22                           Kenya  KEN 1953    .
409         23                         Lesotho  LSO 1953    .
410         24                         Liberia  LBR 1953    0
411         25                      Madagascar  MDG 1953    .
412         26                          Malawi  MWI 1953    .
413         27                            Mali  MLI 1953    .
414         28                      Mauritania  MRT 1953    .
415         29                       Mauritius  MUS 1953    .
416         30                         Morocco  MAR 1953    .
417         31                      Mozambique  MOZ 1953    .
418         32                           Niger  NER 1953    .
419         33                         Nigeria  NGA 1953    .
420         34                          Rwanda  RWA 1953    .
421         35                         Senegal  SEN 1953    .
422         36                      Seychelles  SYC 1953    .
423         37                    Sierra Leone  SLE 1953    .
424         38                         Somalia  SOM 1953    .
425         39                    South Africa  ZAF 1953    0
426         40                           Sudan  SDN 1953    .
427         41                       Swaziland  SWZ 1953    .
428         42                        Tanzania  TZA 1953    .
429         43                            Togo  TGO 1953    .
430         44                         Tunisia  TUN 1953    .
431         45                          Uganda  UGA 1953    .
432         46                           Zaire  ZAR 1953    .
433         47                          Zambia  ZMB 1953    .
434         48                        Zimbabwe  ZWE 1953    .
435         49                    Bahamas, The  BHS 1953    .
436         50                        Barbados  BRB 1953    .
437         51                          Belize  BLZ 1953    .
438         52                          Canada  CAN 1953    0
439         53                      Costa Rica  CRI 1953    0
440         54              Dominican Republic  DOM 1953    0
441         55                     El Salvador  SLV 1953    0
442         56                         Grenada  GRD 1953    .
443         57                       Guatemala  GTM 1953    0
444         58                           Haiti  HTI 1953    0
445         59                        Honduras  HND 1953    0
446         60                         Jamaica  JAM 1953    .
447         61                          Mexico  MEX 1953    0
448         62                       Nicaragua  NIC 1953    0
449         63                          Panama  PAN 1953    0
450         64             Trinidad and Tobago  TTO 1953    .
451         66                       Argentina  ARG 1953    0
452         67                         Bolivia  BOL 1953    0
453         68                          Brazil  BRA 1953    0
454         69                           Chile  CHL 1953    1
455         70                        Colombia  COL 1953    1
456         71                         Ecuador  ECU 1953    0
457         72                          Guyana  GUY 1953    .
458         73                        Paraguay  PRY 1953    0
459         74                            Peru  PER 1953    0
460         75                        Suriname  SUR 1953    .
461         76                         Uruguay  URY 1953    0
462         77                       Venezuela  VEN 1953    0
463         78                      Bangladesh  BGD 1953    .
464         80                           India  IND 1953    0
465         81                       Indonesia  IDN 1953    0
466         82              Iran, Islamic Rep.  IRN 1953    0
467         83                            Iraq  IRQ 1953    0
468         84                          Israel  ISR 1953    0
469         85                           Japan  JPN 1953    0
470         86                          Jordan  JOR 1953    0
471         87             Korea, South (Rep.)  KOR 1953    0
472         88                        Laos PDR  LAO 1953    .
473         89                        Malaysia  MYS 1953    .
474         90                        Mongolia  MNG 1953    0
475         91                         Myanmar  MMR 1953    0
476         92                           Nepal  NPL 1953    0
477         93                        Pakistan  PAK 1953    1
478         94                     Philippines  PHL 1953    0
479         95                       Singapore  SGP 1953    .
480         96                       Sri Lanka  LKA 1953    0
481         97            Syrian Arab Republic  SYR 1953    0
482         98                          Taiwan    . 1953    0
483         99                        Thailand  THA 1953    0
484        100             Yemen Arab Republic    . 1953    .
485        101                         Austria  AUT 1953    0
486        102                         Belgium  BEL 1953    0
487        103                        Bulgaria  BGR 1953    0
488        104                  Czechoslovakia    . 1953    0
489        105                         Denmark  DNK 1953    1
490        106                         Finland  FIN 1953    0
491        108                   Germany, West    . 1953    0
492        109                   Germany, East    . 1953    0
493        110                          Greece  GRC 1953    1
494        111                         Hungary  HUN 1953    0
495        112                         Iceland  ISL 1953    0
496        113                         Ireland  IRL 1953    0
497        114                           Italy  ITA 1953    0
498        115                      Luxembourg  LUX 1953    0
499        116                           Malta  MLT 1953    .
500        117                     Netherlands  NLD 1953    0
501        118                          Norway  NOR 1953    0
502        119                          Poland  POL 1953    0
503        120                        Portugal  PRT 1953    0
504        121                         Romania  ROM 1953    0
505        122                           Spain  ESP 1953    0
506        123                          Sweden  SWE 1953    0
507        124                     Switzerland  CHE 1953    0
508        125                          Turkey  TUR 1953    0
509        128                      Yugoslavia    . 1953    0
510        129                       Australia  AUS 1953    0
511        130                            Fiji  FJI 1953    .
512        131                     New Zealand  NZL 1953    0
513        132                Papua New Guinea  PNG 1953    .
514        133                 Solomon Islands  SLB 1953    .
515        134                         Vanuatu  VUT 1953    .
516        135                   Western Samoa  WSM 1953    .
517        136                         Bahrain  BHR 1953    .
518        137                          Kuwait  KWT 1953    .
519        138                            Oman  OMN 1953    0
520        139                           Qatar  QAT 1953    .
521        140                    Saudi Arabia  SAU 1953    0
522        141            United Arab Emirates  ARE 1953    .
523        142                     Afghanistan  AFG 1953    0
524        143                         Albania  ALB 1953    0
525        144                         Antigua  ATG 1953    .
526        145                         Armenia  ARM 1953    .
527        146                           Nauru    . 1953    .
528        147                      Azerbaijan  AZE 1953    .
529        148                          Bhutan  BTN 1953    .
530        149                         Belarus  BLR 1953    .
531        150              Bosnia-Herzegovina  BIH 1953    .
532        151                          Brunei  BRN 1953    .
533        152                        Cambodia  KHM 1953    0
534        153                         Croatia  HRV 1953    .
535        154                            Cuba  CUB 1953    0
536        155                  Czech Republic  CZE 1953    .
537        156                 Slovak Republic  SVK 1953    .
538        157                        Dominica  DMA 1953    .
539        158               Equatorial Guinea  GNQ 1953    .
540        159                         Estonia  EST 1953    .
541        160                         Eritrea  ERI 1953    .
542        161                         Georgia  GEO 1953    .
543        162                      Kazakhstan  KAZ 1953    .
544        163                        Kiribati  KIR 1953    .
545        164        Korea, North (Dem. Rep.)  PRK 1953    0
546        165                      Kyrgyzstan  KGZ 1953    .
547        166                          Latvia  LVA 1953    .
548        167                         Lebanon  LBN 1953    1
549        168                       Lithuania  LTU 1953    .
550        169                       Macedonia  MKD 1953    .
551        170                 Maldive Islands  MDV 1953    .
552        171                         Moldova  MDA 1953    .
553        172                         Namibia  NAM 1953    .
554        174                       St. Lucia  LCA 1953    .
555        175           Sao Tome and Principe  STP 1953    .
556        176                        Slovenia  SVN 1953    .
557        177                      Somaliland    . 1953    .
558        178               Yemen PDR (South)    . 1953    .
559        179             St. Kitts and Nevis  KNA 1953    .
560        180                     St. Vincent  VCT 1953    .
561        181                      Tajikistan  TJK 1953    .
562        182                    Turkmenistan  TKM 1953    .
563        183                         Ukraine  UKR 1953    .
564        184                           Tonga  TON 1953    .
565        185                      Uzbekistan  UZB 1953    .
566        186                         Vietnam  VNM 1953    .
567        187                          Cyprus  CYP 1953    .
568        188                    Greek Cyprus    . 1953    .
569        189 Micronesia, Federated States of  FSM 1953    .
570        190               Republic of Yemen  YEM 1953    .
571        191                         Germany  DEU 1953    .
572        192                     Yugoslavia2  YUG 1953    .
573        193                           Libya  LBY 1953    0
574        194                       Ethiopia2  ETH 1953    .
575        195                         Andorra  ADO 1953    .
576        196                   Liechtenstein  LIE 1953    .
577        197                Marshall Islands  MHL 1953    .
578        198                           Palau  PLW 1953    .
579        199                      San Marino  SMR 1953    .
580          1                         Algeria  DZA 1954    .
581          2                          Angola  AGO 1954    .
582          3                           Benin  BEN 1954    .
583          4                        Botswana  BWA 1954    .
584          5                    Burkina Faso  BFA 1954    .
585          6                         Burundi  BDI 1954    .
586          7                        Cameroon  CMR 1954    .
587          8                      Cape Verde  CPV 1954    .
588          9        Central African Republic  CAF 1954    .
589         10                            Chad  TCD 1954    .
590         11                         Comoros  COM 1954    .
591         12                           Congo  COG 1954    .
592         13                        Djibouti  DJI 1954    .
593         14                Egypt, Arab Rep.  EGY 1954    0
594         15                        Ethiopia    . 1954    0
595         16                           Gabon  GAB 1954    .
596         17                     Gambia, The  GMB 1954    .
597         18                           Ghana  GHA 1954    .
598         19                          Guinea  GIN 1954    .
599         20                   Guinea-Bissau  GNB 1954    .
600         21                   Cote d'Ivoire  CIV 1954    .
601         22                           Kenya  KEN 1954    .
602         23                         Lesotho  LSO 1954    .
603         24                         Liberia  LBR 1954    0
604         25                      Madagascar  MDG 1954    .
605         26                          Malawi  MWI 1954    .
606         27                            Mali  MLI 1954    .
607         28                      Mauritania  MRT 1954    .
608         29                       Mauritius  MUS 1954    .
609         30                         Morocco  MAR 1954    .
610         31                      Mozambique  MOZ 1954    .
611         32                           Niger  NER 1954    .
612         33                         Nigeria  NGA 1954    .
613         34                          Rwanda  RWA 1954    .
614         35                         Senegal  SEN 1954    .
615         36                      Seychelles  SYC 1954    .
616         37                    Sierra Leone  SLE 1954    .
617         38                         Somalia  SOM 1954    .
618         39                    South Africa  ZAF 1954    0
619         40                           Sudan  SDN 1954    .
620         41                       Swaziland  SWZ 1954    .
621         42                        Tanzania  TZA 1954    .
622         43                            Togo  TGO 1954    .
623         44                         Tunisia  TUN 1954    .
624         45                          Uganda  UGA 1954    .
625         46                           Zaire  ZAR 1954    .
626         47                          Zambia  ZMB 1954    .
627         48                        Zimbabwe  ZWE 1954    .
628         49                    Bahamas, The  BHS 1954    .
629         50                        Barbados  BRB 1954    .
630         51                          Belize  BLZ 1954    .
631         52                          Canada  CAN 1954    0
632         53                      Costa Rica  CRI 1954    0
633         54              Dominican Republic  DOM 1954    0
634         55                     El Salvador  SLV 1954    0
635         56                         Grenada  GRD 1954    .
636         57                       Guatemala  GTM 1954    0
637         58                           Haiti  HTI 1954    0
638         59                        Honduras  HND 1954    0
639         60                         Jamaica  JAM 1954    .
640         61                          Mexico  MEX 1954    0
641         62                       Nicaragua  NIC 1954    0
642         63                          Panama  PAN 1954    0
643         64             Trinidad and Tobago  TTO 1954    .
644         66                       Argentina  ARG 1954    0
645         67                         Bolivia  BOL 1954    0
646         68                          Brazil  BRA 1954    1
647         69                           Chile  CHL 1954    0
648         70                        Colombia  COL 1954    1
649         71                         Ecuador  ECU 1954    0
650         72                          Guyana  GUY 1954    .
651         73                        Paraguay  PRY 1954    0
652         74                            Peru  PER 1954    0
653         75                        Suriname  SUR 1954    .
654         76                         Uruguay  URY 1954    0
655         77                       Venezuela  VEN 1954    0
656         78                      Bangladesh  BGD 1954    .
657         80                           India  IND 1954    0
658         81                       Indonesia  IDN 1954    0
659         82              Iran, Islamic Rep.  IRN 1954    0
660         83                            Iraq  IRQ 1954    0
661         84                          Israel  ISR 1954    0
662         85                           Japan  JPN 1954    0
663         86                          Jordan  JOR 1954    0
664         87             Korea, South (Rep.)  KOR 1954    0
665         88                        Laos PDR  LAO 1954    0
666         89                        Malaysia  MYS 1954    .
667         90                        Mongolia  MNG 1954    0
668         91                         Myanmar  MMR 1954    0
669         92                           Nepal  NPL 1954    0
670         93                        Pakistan  PAK 1954    0
671         94                     Philippines  PHL 1954    0
672         95                       Singapore  SGP 1954    .
673         96                       Sri Lanka  LKA 1954    0
674         97            Syrian Arab Republic  SYR 1954    0
675         98                          Taiwan    . 1954    0
676         99                        Thailand  THA 1954    0
677        100             Yemen Arab Republic    . 1954    .
678        101                         Austria  AUT 1954    0
679        102                         Belgium  BEL 1954    0
680        103                        Bulgaria  BGR 1954    0
681        104                  Czechoslovakia    . 1954    0
682        105                         Denmark  DNK 1954    1
683        106                         Finland  FIN 1954    0
684        108                   Germany, West    . 1954    0
685        109                   Germany, East    . 1954    0
686        110                          Greece  GRC 1954    0
687        111                         Hungary  HUN 1954    0
688        112                         Iceland  ISL 1954    0
689        113                         Ireland  IRL 1954    0
690        114                           Italy  ITA 1954    0
691        115                      Luxembourg  LUX 1954    0
692        116                           Malta  MLT 1954    .
693        117                     Netherlands  NLD 1954    0
694        118                          Norway  NOR 1954    0
695        119                          Poland  POL 1954    0
696        120                        Portugal  PRT 1954    0
697        121                         Romania  ROM 1954    0
698        122                           Spain  ESP 1954    0
699        123                          Sweden  SWE 1954    0
700        124                     Switzerland  CHE 1954    0
701        125                          Turkey  TUR 1954    1
702        128                      Yugoslavia    . 1954    0
703        129                       Australia  AUS 1954    0
704        130                            Fiji  FJI 1954    .
705        131                     New Zealand  NZL 1954    1
706        132                Papua New Guinea  PNG 1954    .
707        133                 Solomon Islands  SLB 1954    .
708        134                         Vanuatu  VUT 1954    .
709        135                   Western Samoa  WSM 1954    .
710        136                         Bahrain  BHR 1954    .
711        137                          Kuwait  KWT 1954    .
712        138                            Oman  OMN 1954    0
713        139                           Qatar  QAT 1954    .
714        140                    Saudi Arabia  SAU 1954    0
715        141            United Arab Emirates  ARE 1954    .
716        142                     Afghanistan  AFG 1954    0
717        143                         Albania  ALB 1954    0
718        144                         Antigua  ATG 1954    .
719        145                         Armenia  ARM 1954    .
720        146                           Nauru    . 1954    .
721        147                      Azerbaijan  AZE 1954    .
722        148                          Bhutan  BTN 1954    .
723        149                         Belarus  BLR 1954    .
724        150              Bosnia-Herzegovina  BIH 1954    .
725        151                          Brunei  BRN 1954    .
726        152                        Cambodia  KHM 1954    0
727        153                         Croatia  HRV 1954    .
728        154                            Cuba  CUB 1954    0
729        155                  Czech Republic  CZE 1954    .
730        156                 Slovak Republic  SVK 1954    .
731        157                        Dominica  DMA 1954    .
732        158               Equatorial Guinea  GNQ 1954    .
733        159                         Estonia  EST 1954    .
734        160                         Eritrea  ERI 1954    .
735        161                         Georgia  GEO 1954    .
736        162                      Kazakhstan  KAZ 1954    .
737        163                        Kiribati  KIR 1954    .
738        164        Korea, North (Dem. Rep.)  PRK 1954    0
739        165                      Kyrgyzstan  KGZ 1954    .
740        166                          Latvia  LVA 1954    .
741        167                         Lebanon  LBN 1954    1
742        168                       Lithuania  LTU 1954    .
743        169                       Macedonia  MKD 1954    .
744        170                 Maldive Islands  MDV 1954    .
745        171                         Moldova  MDA 1954    .
746        172                         Namibia  NAM 1954    .
747        174                       St. Lucia  LCA 1954    .
748        175           Sao Tome and Principe  STP 1954    .
749        176                        Slovenia  SVN 1954    .
750        177                      Somaliland    . 1954    .
751        178               Yemen PDR (South)    . 1954    .
752        179             St. Kitts and Nevis  KNA 1954    .
753        180                     St. Vincent  VCT 1954    .
754        181                      Tajikistan  TJK 1954    .
755        182                    Turkmenistan  TKM 1954    .
756        183                         Ukraine  UKR 1954    .
757        184                           Tonga  TON 1954    .
758        185                      Uzbekistan  UZB 1954    .
759        186                         Vietnam  VNM 1954    .
760        187                          Cyprus  CYP 1954    .
761        188                    Greek Cyprus    . 1954    .
762        189 Micronesia, Federated States of  FSM 1954    .
763        190               Republic of Yemen  YEM 1954    .
764        191                         Germany  DEU 1954    .
765        192                     Yugoslavia2  YUG 1954    .
766        193                           Libya  LBY 1954    0
767        194                       Ethiopia2  ETH 1954    .
768        195                         Andorra  ADO 1954    .
769        196                   Liechtenstein  LIE 1954    .
770        197                Marshall Islands  MHL 1954    .
771        198                           Palau  PLW 1954    .
772        199                      San Marino  SMR 1954    .
773          1                         Algeria  DZA 1955    .
774          2                          Angola  AGO 1955    .
775          3                           Benin  BEN 1955    .
776          4                        Botswana  BWA 1955    .
777          5                    Burkina Faso  BFA 1955    .
778          6                         Burundi  BDI 1955    .
779          7                        Cameroon  CMR 1955    .
780          8                      Cape Verde  CPV 1955    .
781          9        Central African Republic  CAF 1955    .
782         10                            Chad  TCD 1955    .
783         11                         Comoros  COM 1955    .
784         12                           Congo  COG 1955    .
785         13                        Djibouti  DJI 1955    .
786         14                Egypt, Arab Rep.  EGY 1955    0
787         15                        Ethiopia    . 1955    0
788         16                           Gabon  GAB 1955    .
789         17                     Gambia, The  GMB 1955    .
790         18                           Ghana  GHA 1955    .
791         19                          Guinea  GIN 1955    .
792         20                   Guinea-Bissau  GNB 1955    .
793         21                   Cote d'Ivoire  CIV 1955    .
794         22                           Kenya  KEN 1955    .
795         23                         Lesotho  LSO 1955    .
796         24                         Liberia  LBR 1955    0
797         25                      Madagascar  MDG 1955    .
798         26                          Malawi  MWI 1955    .
799         27                            Mali  MLI 1955    .
800         28                      Mauritania  MRT 1955    .
801         29                       Mauritius  MUS 1955    .
802         30                         Morocco  MAR 1955    .
803         31                      Mozambique  MOZ 1955    .
804         32                           Niger  NER 1955    .
805         33                         Nigeria  NGA 1955    .
806         34                          Rwanda  RWA 1955    .
807         35                         Senegal  SEN 1955    .
808         36                      Seychelles  SYC 1955    .
809         37                    Sierra Leone  SLE 1955    .
810         38                         Somalia  SOM 1955    .
811         39                    South Africa  ZAF 1955    0
812         40                           Sudan  SDN 1955    .
813         41                       Swaziland  SWZ 1955    .
814         42                        Tanzania  TZA 1955    .
815         43                            Togo  TGO 1955    .
816         44                         Tunisia  TUN 1955    .
817         45                          Uganda  UGA 1955    .
818         46                           Zaire  ZAR 1955    .
819         47                          Zambia  ZMB 1955    .
820         48                        Zimbabwe  ZWE 1955    .
821         49                    Bahamas, The  BHS 1955    .
822         50                        Barbados  BRB 1955    .
823         51                          Belize  BLZ 1955    .
824         52                          Canada  CAN 1955    0
825         53                      Costa Rica  CRI 1955    0
826         54              Dominican Republic  DOM 1955    0
827         55                     El Salvador  SLV 1955    0
828         56                         Grenada  GRD 1955    .
829         57                       Guatemala  GTM 1955    0
830         58                           Haiti  HTI 1955    0
831         59                        Honduras  HND 1955    0
832         60                         Jamaica  JAM 1955    .
833         61                          Mexico  MEX 1955    0
834         62                       Nicaragua  NIC 1955    0
835         63                          Panama  PAN 1955    0
836         64             Trinidad and Tobago  TTO 1955    .
837         66                       Argentina  ARG 1955    0
838         67                         Bolivia  BOL 1955    0
839         68                          Brazil  BRA 1955    1
840         69                           Chile  CHL 1955    0
841         70                        Colombia  COL 1955    0
842         71                         Ecuador  ECU 1955    0
843         72                          Guyana  GUY 1955    .
844         73                        Paraguay  PRY 1955    0
845         74                            Peru  PER 1955    1
846         75                        Suriname  SUR 1955    .
847         76                         Uruguay  URY 1955    0
848         77                       Venezuela  VEN 1955    0
849         78                      Bangladesh  BGD 1955    .
850         80                           India  IND 1955    0
851         81                       Indonesia  IDN 1955    0
852         82              Iran, Islamic Rep.  IRN 1955    1
853         83                            Iraq  IRQ 1955    0
854         84                          Israel  ISR 1955    0
855         85                           Japan  JPN 1955    0
856         86                          Jordan  JOR 1955    0
857         87             Korea, South (Rep.)  KOR 1955    0
858         88                        Laos PDR  LAO 1955    0
859         89                        Malaysia  MYS 1955    .
860         90                        Mongolia  MNG 1955    0
861         91                         Myanmar  MMR 1955    0
862         92                           Nepal  NPL 1955    0
863         93                        Pakistan  PAK 1955    0
864         94                     Philippines  PHL 1955    0
865         95                       Singapore  SGP 1955    .
866         96                       Sri Lanka  LKA 1955    0
867         97            Syrian Arab Republic  SYR 1955    0
868         98                          Taiwan    . 1955    0
869         99                        Thailand  THA 1955    0
870        100             Yemen Arab Republic    . 1955    .
871        101                         Austria  AUT 1955    0
872        102                         Belgium  BEL 1955    1
873        103                        Bulgaria  BGR 1955    0
874        104                  Czechoslovakia    . 1955    0
875        105                         Denmark  DNK 1955    0
876        106                         Finland  FIN 1955    0
877        108                   Germany, West    . 1955    0
878        109                   Germany, East    . 1955    0
879        110                          Greece  GRC 1955    0
880        111                         Hungary  HUN 1955    0
881        112                         Iceland  ISL 1955    0
882        113                         Ireland  IRL 1955    0
883        114                           Italy  ITA 1955    0
884        115                      Luxembourg  LUX 1955    0
885        116                           Malta  MLT 1955    .
886        117                     Netherlands  NLD 1955    0
887        118                          Norway  NOR 1955    0
888        119                          Poland  POL 1955    0
889        120                        Portugal  PRT 1955    0
890        121                         Romania  ROM 1955    0
891        122                           Spain  ESP 1955    0
892        123                          Sweden  SWE 1955    0
893        124                     Switzerland  CHE 1955    0
894        125                          Turkey  TUR 1955    1
895        128                      Yugoslavia    . 1955    0
896        129                       Australia  AUS 1955    0
897        130                            Fiji  FJI 1955    .
898        131                     New Zealand  NZL 1955    1
899        132                Papua New Guinea  PNG 1955    .
900        133                 Solomon Islands  SLB 1955    .
901        134                         Vanuatu  VUT 1955    .
902        135                   Western Samoa  WSM 1955    .
903        136                         Bahrain  BHR 1955    .
904        137                          Kuwait  KWT 1955    .
905        138                            Oman  OMN 1955    0
906        139                           Qatar  QAT 1955    .
907        140                    Saudi Arabia  SAU 1955    0
908        141            United Arab Emirates  ARE 1955    .
909        142                     Afghanistan  AFG 1955    0
910        143                         Albania  ALB 1955    0
911        144                         Antigua  ATG 1955    .
912        145                         Armenia  ARM 1955    .
913        146                           Nauru    . 1955    .
914        147                      Azerbaijan  AZE 1955    .
915        148                          Bhutan  BTN 1955    .
916        149                         Belarus  BLR 1955    .
917        150              Bosnia-Herzegovina  BIH 1955    .
918        151                          Brunei  BRN 1955    .
919        152                        Cambodia  KHM 1955    0
920        153                         Croatia  HRV 1955    .
921        154                            Cuba  CUB 1955    0
922        155                  Czech Republic  CZE 1955    .
923        156                 Slovak Republic  SVK 1955    .
924        157                        Dominica  DMA 1955    .
925        158               Equatorial Guinea  GNQ 1955    .
926        159                         Estonia  EST 1955    .
927        160                         Eritrea  ERI 1955    .
928        161                         Georgia  GEO 1955    .
929        162                      Kazakhstan  KAZ 1955    .
930        163                        Kiribati  KIR 1955    .
931        164        Korea, North (Dem. Rep.)  PRK 1955    0
932        165                      Kyrgyzstan  KGZ 1955    .
933        166                          Latvia  LVA 1955    .
934        167                         Lebanon  LBN 1955    0
935        168                       Lithuania  LTU 1955    .
936        169                       Macedonia  MKD 1955    .
937        170                 Maldive Islands  MDV 1955    .
938        171                         Moldova  MDA 1955    .
939        172                         Namibia  NAM 1955    .
940        174                       St. Lucia  LCA 1955    .
941        175           Sao Tome and Principe  STP 1955    .
942        176                        Slovenia  SVN 1955    .
943        177                      Somaliland    . 1955    .
944        178               Yemen PDR (South)    . 1955    .
945        179             St. Kitts and Nevis  KNA 1955    .
946        180                     St. Vincent  VCT 1955    .
947        181                      Tajikistan  TJK 1955    .
948        182                    Turkmenistan  TKM 1955    .
949        183                         Ukraine  UKR 1955    .
950        184                           Tonga  TON 1955    .
951        185                      Uzbekistan  UZB 1955    .
952        186                         Vietnam  VNM 1955    .
953        187                          Cyprus  CYP 1955    .
954        188                    Greek Cyprus    . 1955    .
955        189 Micronesia, Federated States of  FSM 1955    .
956        190               Republic of Yemen  YEM 1955    .
957        191                         Germany  DEU 1955    .
958        192                     Yugoslavia2  YUG 1955    .
959        193                           Libya  LBY 1955    0
960        194                       Ethiopia2  ETH 1955    .
961        195                         Andorra  ADO 1955    .
962        196                   Liechtenstein  LIE 1955    .
963        197                Marshall Islands  MHL 1955    .
964        198                           Palau  PLW 1955    .
965        199                      San Marino  SMR 1955    .
966          1                         Algeria  DZA 1956    .
967          2                          Angola  AGO 1956    .
968          3                           Benin  BEN 1956    .
969          4                        Botswana  BWA 1956    .
970          5                    Burkina Faso  BFA 1956    .
971          6                         Burundi  BDI 1956    .
972          7                        Cameroon  CMR 1956    .
973          8                      Cape Verde  CPV 1956    .
974          9        Central African Republic  CAF 1956    .
975         10                            Chad  TCD 1956    .
976         11                         Comoros  COM 1956    .
977         12                           Congo  COG 1956    .
978         13                        Djibouti  DJI 1956    .
979         14                Egypt, Arab Rep.  EGY 1956    0
980         15                        Ethiopia    . 1956    0
981         16                           Gabon  GAB 1956    .
982         17                     Gambia, The  GMB 1956    .
983         18                           Ghana  GHA 1956    .
984         19                          Guinea  GIN 1956    .
985         20                   Guinea-Bissau  GNB 1956    .
986         21                   Cote d'Ivoire  CIV 1956    .
987         22                           Kenya  KEN 1956    .
988         23                         Lesotho  LSO 1956    .
989         24                         Liberia  LBR 1956    0
990         25                      Madagascar  MDG 1956    .
991         26                          Malawi  MWI 1956    .
992         27                            Mali  MLI 1956    .
993         28                      Mauritania  MRT 1956    .
994         29                       Mauritius  MUS 1956    .
995         30                         Morocco  MAR 1956    0
996         31                      Mozambique  MOZ 1956    .
997         32                           Niger  NER 1956    .
998         33                         Nigeria  NGA 1956    .
999         34                          Rwanda  RWA 1956    .
1000        35                         Senegal  SEN 1956    .
1001        36                      Seychelles  SYC 1956    .
1002        37                    Sierra Leone  SLE 1956    .
1003        38                         Somalia  SOM 1956    .
1004        39                    South Africa  ZAF 1956    0
1005        40                           Sudan  SDN 1956    0
1006        41                       Swaziland  SWZ 1956    .
1007        42                        Tanzania  TZA 1956    .
1008        43                            Togo  TGO 1956    .
1009        44                         Tunisia  TUN 1956    0
1010        45                          Uganda  UGA 1956    .
1011        46                           Zaire  ZAR 1956    .
1012        47                          Zambia  ZMB 1956    .
1013        48                        Zimbabwe  ZWE 1956    .
1014        49                    Bahamas, The  BHS 1956    .
1015        50                        Barbados  BRB 1956    .
1016        51                          Belize  BLZ 1956    .
1017        52                          Canada  CAN 1956    0
1018        53                      Costa Rica  CRI 1956    0
1019        54              Dominican Republic  DOM 1956    0
1020        55                     El Salvador  SLV 1956    0
1021        56                         Grenada  GRD 1956    .
1022        57                       Guatemala  GTM 1956    0
1023        58                           Haiti  HTI 1956    0
1024        59                        Honduras  HND 1956    0
1025        60                         Jamaica  JAM 1956    .
1026        61                          Mexico  MEX 1956    0
1027        62                       Nicaragua  NIC 1956    0
1028        63                          Panama  PAN 1956    0
1029        64             Trinidad and Tobago  TTO 1956    .
1030        66                       Argentina  ARG 1956    0
1031        67                         Bolivia  BOL 1956    0
1032        68                          Brazil  BRA 1956    0
1033        69                           Chile  CHL 1956    0
1034        70                        Colombia  COL 1956    0
1035        71                         Ecuador  ECU 1956    0
1036        72                          Guyana  GUY 1956    .
1037        73                        Paraguay  PRY 1956    0
1038        74                            Peru  PER 1956    1
1039        75                        Suriname  SUR 1956    .
1040        76                         Uruguay  URY 1956    0
1041        77                       Venezuela  VEN 1956    0
1042        78                      Bangladesh  BGD 1956    .
1043        80                           India  IND 1956    0
1044        81                       Indonesia  IDN 1956    0
1045        82              Iran, Islamic Rep.  IRN 1956    1
1046        83                            Iraq  IRQ 1956    0
1047        84                          Israel  ISR 1956    0
1048        85                           Japan  JPN 1956    0
1049        86                          Jordan  JOR 1956    0
1050        87             Korea, South (Rep.)  KOR 1956    0
1051        88                        Laos PDR  LAO 1956    0
1052        89                        Malaysia  MYS 1956    .
1053        90                        Mongolia  MNG 1956    0
1054        91                         Myanmar  MMR 1956    0
1055        92                           Nepal  NPL 1956    0
1056        93                        Pakistan  PAK 1956    0
1057        94                     Philippines  PHL 1956    0
1058        95                       Singapore  SGP 1956    .
1059        96                       Sri Lanka  LKA 1956    0
1060        97            Syrian Arab Republic  SYR 1956    0
1061        98                          Taiwan    . 1956    0
1062        99                        Thailand  THA 1956    0
1063       100             Yemen Arab Republic    . 1956    .
1064       101                         Austria  AUT 1956    0
1065       102                         Belgium  BEL 1956    1
1066       103                        Bulgaria  BGR 1956    0
1067       104                  Czechoslovakia    . 1956    0
1068       105                         Denmark  DNK 1956    0
1069       106                         Finland  FIN 1956    0
1070       108                   Germany, West    . 1956    0
1071       109                   Germany, East    . 1956    0
1072       110                          Greece  GRC 1956    0
1073       111                         Hungary  HUN 1956    0
1074       112                         Iceland  ISL 1956    0
1075       113                         Ireland  IRL 1956    0
1076       114                           Italy  ITA 1956    0
1077       115                      Luxembourg  LUX 1956    0
1078       116                           Malta  MLT 1956    .
1079       117                     Netherlands  NLD 1956    0
1080       118                          Norway  NOR 1956    0
1081       119                          Poland  POL 1956    0
1082       120                        Portugal  PRT 1956    0
1083       121                         Romania  ROM 1956    0
1084       122                           Spain  ESP 1956    0
1085       123                          Sweden  SWE 1956    0
1086       124                     Switzerland  CHE 1956    0
1087       125                          Turkey  TUR 1956    0
1088       128                      Yugoslavia    . 1956    1
1089       129                       Australia  AUS 1956    1
1090       130                            Fiji  FJI 1956    .
1091       131                     New Zealand  NZL 1956    0
1092       132                Papua New Guinea  PNG 1956    .
1093       133                 Solomon Islands  SLB 1956    .
1094       134                         Vanuatu  VUT 1956    .
1095       135                   Western Samoa  WSM 1956    .
1096       136                         Bahrain  BHR 1956    .
1097       137                          Kuwait  KWT 1956    .
1098       138                            Oman  OMN 1956    0
1099       139                           Qatar  QAT 1956    .
1100       140                    Saudi Arabia  SAU 1956    0
1101       141            United Arab Emirates  ARE 1956    .
1102       142                     Afghanistan  AFG 1956    0
1103       143                         Albania  ALB 1956    0
1104       144                         Antigua  ATG 1956    .
1105       145                         Armenia  ARM 1956    .
1106       146                           Nauru    . 1956    .
1107       147                      Azerbaijan  AZE 1956    .
1108       148                          Bhutan  BTN 1956    .
1109       149                         Belarus  BLR 1956    .
1110       150              Bosnia-Herzegovina  BIH 1956    .
1111       151                          Brunei  BRN 1956    .
1112       152                        Cambodia  KHM 1956    0
1113       153                         Croatia  HRV 1956    .
1114       154                            Cuba  CUB 1956    1
1115       155                  Czech Republic  CZE 1956    .
1116       156                 Slovak Republic  SVK 1956    .
1117       157                        Dominica  DMA 1956    .
1118       158               Equatorial Guinea  GNQ 1956    .
1119       159                         Estonia  EST 1956    .
1120       160                         Eritrea  ERI 1956    .
1121       161                         Georgia  GEO 1956    .
1122       162                      Kazakhstan  KAZ 1956    .
1123       163                        Kiribati  KIR 1956    .
1124       164        Korea, North (Dem. Rep.)  PRK 1956    0
1125       165                      Kyrgyzstan  KGZ 1956    .
1126       166                          Latvia  LVA 1956    .
1127       167                         Lebanon  LBN 1956    0
1128       168                       Lithuania  LTU 1956    .
1129       169                       Macedonia  MKD 1956    .
1130       170                 Maldive Islands  MDV 1956    .
1131       171                         Moldova  MDA 1956    .
1132       172                         Namibia  NAM 1956    .
1133       174                       St. Lucia  LCA 1956    .
1134       175           Sao Tome and Principe  STP 1956    .
1135       176                        Slovenia  SVN 1956    .
1136       177                      Somaliland    . 1956    .
1137       178               Yemen PDR (South)    . 1956    .
1138       179             St. Kitts and Nevis  KNA 1956    .
1139       180                     St. Vincent  VCT 1956    .
1140       181                      Tajikistan  TJK 1956    .
1141       182                    Turkmenistan  TKM 1956    .
1142       183                         Ukraine  UKR 1956    .
1143       184                           Tonga  TON 1956    .
1144       185                      Uzbekistan  UZB 1956    .
1145       186                         Vietnam  VNM 1956    .
1146       187                          Cyprus  CYP 1956    .
1147       188                    Greek Cyprus    . 1956    .
1148       189 Micronesia, Federated States of  FSM 1956    .
1149       190               Republic of Yemen  YEM 1956    .
1150       191                         Germany  DEU 1956    .
1151       192                     Yugoslavia2  YUG 1956    .
1152       193                           Libya  LBY 1956    0
1153       194                       Ethiopia2  ETH 1956    .
1154       195                         Andorra  ADO 1956    .
1155       196                   Liechtenstein  LIE 1956    .
1156       197                Marshall Islands  MHL 1956    .
1157       198                           Palau  PLW 1956    .
1158       199                      San Marino  SMR 1956    .
1159         1                         Algeria  DZA 1957    .
1160         2                          Angola  AGO 1957    .
1161         3                           Benin  BEN 1957    .
1162         4                        Botswana  BWA 1957    .
1163         5                    Burkina Faso  BFA 1957    .
1164         6                         Burundi  BDI 1957    .
1165         7                        Cameroon  CMR 1957    .
1166         8                      Cape Verde  CPV 1957    .
1167         9        Central African Republic  CAF 1957    .
1168        10                            Chad  TCD 1957    .
1169        11                         Comoros  COM 1957    .
1170        12                           Congo  COG 1957    .
1171        13                        Djibouti  DJI 1957    .
1172        14                Egypt, Arab Rep.  EGY 1957    0
1173        15                        Ethiopia    . 1957    0
1174        16                           Gabon  GAB 1957    .
1175        17                     Gambia, The  GMB 1957    .
1176        18                           Ghana  GHA 1957    0
1177        19                          Guinea  GIN 1957    .
1178        20                   Guinea-Bissau  GNB 1957    .
1179        21                   Cote d'Ivoire  CIV 1957    .
1180        22                           Kenya  KEN 1957    .
1181        23                         Lesotho  LSO 1957    .
1182        24                         Liberia  LBR 1957    0
1183        25                      Madagascar  MDG 1957    .
1184        26                          Malawi  MWI 1957    .
1185        27                            Mali  MLI 1957    .
1186        28                      Mauritania  MRT 1957    .
1187        29                       Mauritius  MUS 1957    .
1188        30                         Morocco  MAR 1957    0
1189        31                      Mozambique  MOZ 1957    .
1190        32                           Niger  NER 1957    .
1191        33                         Nigeria  NGA 1957    .
1192        34                          Rwanda  RWA 1957    .
1193        35                         Senegal  SEN 1957    .
1194        36                      Seychelles  SYC 1957    .
1195        37                    Sierra Leone  SLE 1957    .
1196        38                         Somalia  SOM 1957    .
1197        39                    South Africa  ZAF 1957    0
1198        40                           Sudan  SDN 1957    0
1199        41                       Swaziland  SWZ 1957    .
1200        42                        Tanzania  TZA 1957    .
1201        43                            Togo  TGO 1957    .
1202        44                         Tunisia  TUN 1957    0
1203        45                          Uganda  UGA 1957    .
1204        46                           Zaire  ZAR 1957    .
1205        47                          Zambia  ZMB 1957    .
1206        48                        Zimbabwe  ZWE 1957    .
1207        49                    Bahamas, The  BHS 1957    .
1208        50                        Barbados  BRB 1957    .
1209        51                          Belize  BLZ 1957    .
1210        52                          Canada  CAN 1957    0
1211        53                      Costa Rica  CRI 1957    0
1212        54              Dominican Republic  DOM 1957    0
1213        55                     El Salvador  SLV 1957    0
1214        56                         Grenada  GRD 1957    .
1215        57                       Guatemala  GTM 1957    0
1216        58                           Haiti  HTI 1957    0
1217        59                        Honduras  HND 1957    0
1218        60                         Jamaica  JAM 1957    .
1219        61                          Mexico  MEX 1957    0
1220        62                       Nicaragua  NIC 1957    0
1221        63                          Panama  PAN 1957    0
1222        64             Trinidad and Tobago  TTO 1957    .
1223        66                       Argentina  ARG 1957    0
1224        67                         Bolivia  BOL 1957    0
1225        68                          Brazil  BRA 1957    0
1226        69                           Chile  CHL 1957    0
1227        70                        Colombia  COL 1957    1
1228        71                         Ecuador  ECU 1957    0
1229        72                          Guyana  GUY 1957    .
1230        73                        Paraguay  PRY 1957    0
1231        74                            Peru  PER 1957    0
1232        75                        Suriname  SUR 1957    .
1233        76                         Uruguay  URY 1957    0
1234        77                       Venezuela  VEN 1957    0
1235        78                      Bangladesh  BGD 1957    .
1236        80                           India  IND 1957    0
1237        81                       Indonesia  IDN 1957    0
1238        82              Iran, Islamic Rep.  IRN 1957    0
1239        83                            Iraq  IRQ 1957    1
1240        84                          Israel  ISR 1957    0
1241        85                           Japan  JPN 1957    0
1242        86                          Jordan  JOR 1957    0
1243        87             Korea, South (Rep.)  KOR 1957    0
1244        88                        Laos PDR  LAO 1957    0
1245        89                        Malaysia  MYS 1957    0
1246        90                        Mongolia  MNG 1957    0
1247        91                         Myanmar  MMR 1957    0
1248        92                           Nepal  NPL 1957    0
1249        93                        Pakistan  PAK 1957    0
1250        94                     Philippines  PHL 1957    1
1251        95                       Singapore  SGP 1957    .
1252        96                       Sri Lanka  LKA 1957    0
1253        97            Syrian Arab Republic  SYR 1957    0
1254        98                          Taiwan    . 1957    0
1255        99                        Thailand  THA 1957    0
1256       100             Yemen Arab Republic    . 1957    .
1257       101                         Austria  AUT 1957    0
1258       102                         Belgium  BEL 1957    0
1259       103                        Bulgaria  BGR 1957    0
1260       104                  Czechoslovakia    . 1957    0
1261       105                         Denmark  DNK 1957    0
1262       106                         Finland  FIN 1957    0
1263       108                   Germany, West    . 1957    0
1264       109                   Germany, East    . 1957    0
1265       110                          Greece  GRC 1957    0
1266       111                         Hungary  HUN 1957    0
1267       112                         Iceland  ISL 1957    0
1268       113                         Ireland  IRL 1957    0
1269       114                           Italy  ITA 1957    0
1270       115                      Luxembourg  LUX 1957    0
1271       116                           Malta  MLT 1957    .
1272       117                     Netherlands  NLD 1957    0
1273       118                          Norway  NOR 1957    0
1274       119                          Poland  POL 1957    0
1275       120                        Portugal  PRT 1957    0
1276       121                         Romania  ROM 1957    0
1277       122                           Spain  ESP 1957    0
1278       123                          Sweden  SWE 1957    1
1279       124                     Switzerland  CHE 1957    0
1280       125                          Turkey  TUR 1957    0
1281       128                      Yugoslavia    . 1957    0
1282       129                       Australia  AUS 1957    1
1283       130                            Fiji  FJI 1957    .
1284       131                     New Zealand  NZL 1957    0
1285       132                Papua New Guinea  PNG 1957    .
1286       133                 Solomon Islands  SLB 1957    .
1287       134                         Vanuatu  VUT 1957    .
1288       135                   Western Samoa  WSM 1957    .
1289       136                         Bahrain  BHR 1957    .
1290       137                          Kuwait  KWT 1957    .
1291       138                            Oman  OMN 1957    0
1292       139                           Qatar  QAT 1957    .
1293       140                    Saudi Arabia  SAU 1957    0
1294       141            United Arab Emirates  ARE 1957    .
1295       142                     Afghanistan  AFG 1957    0
1296       143                         Albania  ALB 1957    0
1297       144                         Antigua  ATG 1957    .
1298       145                         Armenia  ARM 1957    .
1299       146                           Nauru    . 1957    .
1300       147                      Azerbaijan  AZE 1957    .
1301       148                          Bhutan  BTN 1957    .
1302       149                         Belarus  BLR 1957    .
1303       150              Bosnia-Herzegovina  BIH 1957    .
1304       151                          Brunei  BRN 1957    .
1305       152                        Cambodia  KHM 1957    0
1306       153                         Croatia  HRV 1957    .
1307       154                            Cuba  CUB 1957    1
1308       155                  Czech Republic  CZE 1957    .
1309       156                 Slovak Republic  SVK 1957    .
1310       157                        Dominica  DMA 1957    .
1311       158               Equatorial Guinea  GNQ 1957    .
1312       159                         Estonia  EST 1957    .
1313       160                         Eritrea  ERI 1957    .
1314       161                         Georgia  GEO 1957    .
1315       162                      Kazakhstan  KAZ 1957    .
1316       163                        Kiribati  KIR 1957    .
1317       164        Korea, North (Dem. Rep.)  PRK 1957    0
1318       165                      Kyrgyzstan  KGZ 1957    .
1319       166                          Latvia  LVA 1957    .
1320       167                         Lebanon  LBN 1957    0
1321       168                       Lithuania  LTU 1957    .
1322       169                       Macedonia  MKD 1957    .
1323       170                 Maldive Islands  MDV 1957    .
1324       171                         Moldova  MDA 1957    .
1325       172                         Namibia  NAM 1957    .
1326       174                       St. Lucia  LCA 1957    .
1327       175           Sao Tome and Principe  STP 1957    .
1328       176                        Slovenia  SVN 1957    .
1329       177                      Somaliland    . 1957    .
1330       178               Yemen PDR (South)    . 1957    .
1331       179             St. Kitts and Nevis  KNA 1957    .
1332       180                     St. Vincent  VCT 1957    .
1333       181                      Tajikistan  TJK 1957    .
1334       182                    Turkmenistan  TKM 1957    .
1335       183                         Ukraine  UKR 1957    .
1336       184                           Tonga  TON 1957    .
1337       185                      Uzbekistan  UZB 1957    .
1338       186                         Vietnam  VNM 1957    .
1339       187                          Cyprus  CYP 1957    .
1340       188                    Greek Cyprus    . 1957    .
1341       189 Micronesia, Federated States of  FSM 1957    .
1342       190               Republic of Yemen  YEM 1957    .
1343       191                         Germany  DEU 1957    .
1344       192                     Yugoslavia2  YUG 1957    .
1345       193                           Libya  LBY 1957    0
1346       194                       Ethiopia2  ETH 1957    .
1347       195                         Andorra  ADO 1957    .
1348       196                   Liechtenstein  LIE 1957    .
1349       197                Marshall Islands  MHL 1957    .
1350       198                           Palau  PLW 1957    .
1351       199                      San Marino  SMR 1957    .
1352         1                         Algeria  DZA 1958    .
1353         2                          Angola  AGO 1958    .
1354         3                           Benin  BEN 1958    .
1355         4                        Botswana  BWA 1958    .
1356         5                    Burkina Faso  BFA 1958    .
1357         6                         Burundi  BDI 1958    .
1358         7                        Cameroon  CMR 1958    .
1359         8                      Cape Verde  CPV 1958    .
1360         9        Central African Republic  CAF 1958    .
1361        10                            Chad  TCD 1958    .
1362        11                         Comoros  COM 1958    .
1363        12                           Congo  COG 1958    .
1364        13                        Djibouti  DJI 1958    .
1365        14                Egypt, Arab Rep.  EGY 1958    0
1366        15                        Ethiopia    . 1958    0
1367        16                           Gabon  GAB 1958    .
1368        17                     Gambia, The  GMB 1958    .
1369        18                           Ghana  GHA 1958    0
1370        19                          Guinea  GIN 1958    0
1371        20                   Guinea-Bissau  GNB 1958    .
1372        21                   Cote d'Ivoire  CIV 1958    .
1373        22                           Kenya  KEN 1958    .
1374        23                         Lesotho  LSO 1958    .
1375        24                         Liberia  LBR 1958    0
1376        25                      Madagascar  MDG 1958    .
1377        26                          Malawi  MWI 1958    .
1378        27                            Mali  MLI 1958    .
1379        28                      Mauritania  MRT 1958    .
1380        29                       Mauritius  MUS 1958    .
1381        30                         Morocco  MAR 1958    0
1382        31                      Mozambique  MOZ 1958    .
1383        32                           Niger  NER 1958    .
1384        33                         Nigeria  NGA 1958    .
1385        34                          Rwanda  RWA 1958    .
1386        35                         Senegal  SEN 1958    .
1387        36                      Seychelles  SYC 1958    .
1388        37                    Sierra Leone  SLE 1958    .
1389        38                         Somalia  SOM 1958    .
1390        39                    South Africa  ZAF 1958    0
1391        40                           Sudan  SDN 1958    0
1392        41                       Swaziland  SWZ 1958    .
1393        42                        Tanzania  TZA 1958    .
1394        43                            Togo  TGO 1958    .
1395        44                         Tunisia  TUN 1958    0
1396        45                          Uganda  UGA 1958    .
1397        46                           Zaire  ZAR 1958    .
1398        47                          Zambia  ZMB 1958    .
1399        48                        Zimbabwe  ZWE 1958    .
1400        49                    Bahamas, The  BHS 1958    .
1401        50                        Barbados  BRB 1958    .
1402        51                          Belize  BLZ 1958    .
1403        52                          Canada  CAN 1958    1
1404        53                      Costa Rica  CRI 1958    0
1405        54              Dominican Republic  DOM 1958    0
1406        55                     El Salvador  SLV 1958    0
1407        56                         Grenada  GRD 1958    .
1408        57                       Guatemala  GTM 1958    0
1409        58                           Haiti  HTI 1958    0
1410        59                        Honduras  HND 1958    0
1411        60                         Jamaica  JAM 1958    .
1412        61                          Mexico  MEX 1958    0
1413        62                       Nicaragua  NIC 1958    0
1414        63                          Panama  PAN 1958    1
1415        64             Trinidad and Tobago  TTO 1958    .
1416        66                       Argentina  ARG 1958    0
1417        67                         Bolivia  BOL 1958    0
1418        68                          Brazil  BRA 1958    0
1419        69                           Chile  CHL 1958    0
1420        70                        Colombia  COL 1958    1
1421        71                         Ecuador  ECU 1958    0
1422        72                          Guyana  GUY 1958    .
1423        73                        Paraguay  PRY 1958    0
1424        74                            Peru  PER 1958    0
1425        75                        Suriname  SUR 1958    .
1426        76                         Uruguay  URY 1958    0
1427        77                       Venezuela  VEN 1958    0
1428        78                      Bangladesh  BGD 1958    .
1429        80                           India  IND 1958    0
1430        81                       Indonesia  IDN 1958    0
1431        82              Iran, Islamic Rep.  IRN 1958    0
1432        83                            Iraq  IRQ 1958    1
1433        84                          Israel  ISR 1958    0
1434        85                           Japan  JPN 1958    1
1435        86                          Jordan  JOR 1958    0
1436        87             Korea, South (Rep.)  KOR 1958    0
1437        88                        Laos PDR  LAO 1958    0
1438        89                        Malaysia  MYS 1958    0
1439        90                        Mongolia  MNG 1958    0
1440        91                         Myanmar  MMR 1958    0
1441        92                           Nepal  NPL 1958    0
1442        93                        Pakistan  PAK 1958    0
1443        94                     Philippines  PHL 1958    0
1444        95                       Singapore  SGP 1958    .
1445        96                       Sri Lanka  LKA 1958    0
1446        97            Syrian Arab Republic  SYR 1958    0
1447        98                          Taiwan    . 1958    0
1448        99                        Thailand  THA 1958    0
1449       100             Yemen Arab Republic    . 1958    .
1450       101                         Austria  AUT 1958    0
1451       102                         Belgium  BEL 1958    0
1452       103                        Bulgaria  BGR 1958    0
1453       104                  Czechoslovakia    . 1958    0
1454       105                         Denmark  DNK 1958    0
1455       106                         Finland  FIN 1958    0
1456       108                   Germany, West    . 1958    0
1457       109                   Germany, East    . 1958    0
1458       110                          Greece  GRC 1958    0
1459       111                         Hungary  HUN 1958    0
1460       112                         Iceland  ISL 1958    0
1461       113                         Ireland  IRL 1958    0
1462       114                           Italy  ITA 1958    0
1463       115                      Luxembourg  LUX 1958    0
1464       116                           Malta  MLT 1958    .
1465       117                     Netherlands  NLD 1958    0
1466       118                          Norway  NOR 1958    0
1467       119                          Poland  POL 1958    0
1468       120                        Portugal  PRT 1958    0
1469       121                         Romania  ROM 1958    0
1470       122                           Spain  ESP 1958    0
1471       123                          Sweden  SWE 1958    1
1472       124                     Switzerland  CHE 1958    0
1473       125                          Turkey  TUR 1958    0
1474       128                      Yugoslavia    . 1958    0
1475       129                       Australia  AUS 1958    0
1476       130                            Fiji  FJI 1958    .
1477       131                     New Zealand  NZL 1958    0
1478       132                Papua New Guinea  PNG 1958    .
1479       133                 Solomon Islands  SLB 1958    .
1480       134                         Vanuatu  VUT 1958    .
1481       135                   Western Samoa  WSM 1958    .
1482       136                         Bahrain  BHR 1958    .
1483       137                          Kuwait  KWT 1958    .
1484       138                            Oman  OMN 1958    0
1485       139                           Qatar  QAT 1958    .
1486       140                    Saudi Arabia  SAU 1958    0
1487       141            United Arab Emirates  ARE 1958    .
1488       142                     Afghanistan  AFG 1958    0
1489       143                         Albania  ALB 1958    0
1490       144                         Antigua  ATG 1958    .
1491       145                         Armenia  ARM 1958    .
1492       146                           Nauru    . 1958    .
1493       147                      Azerbaijan  AZE 1958    .
1494       148                          Bhutan  BTN 1958    .
1495       149                         Belarus  BLR 1958    .
1496       150              Bosnia-Herzegovina  BIH 1958    .
1497       151                          Brunei  BRN 1958    .
1498       152                        Cambodia  KHM 1958    0
1499       153                         Croatia  HRV 1958    .
1500       154                            Cuba  CUB 1958    0
1501       155                  Czech Republic  CZE 1958    .
1502       156                 Slovak Republic  SVK 1958    .
1503       157                        Dominica  DMA 1958    .
1504       158               Equatorial Guinea  GNQ 1958    .
1505       159                         Estonia  EST 1958    .
1506       160                         Eritrea  ERI 1958    .
1507       161                         Georgia  GEO 1958    .
1508       162                      Kazakhstan  KAZ 1958    .
1509       163                        Kiribati  KIR 1958    .
1510       164        Korea, North (Dem. Rep.)  PRK 1958    0
1511       165                      Kyrgyzstan  KGZ 1958    .
1512       166                          Latvia  LVA 1958    .
1513       167                         Lebanon  LBN 1958    0
1514       168                       Lithuania  LTU 1958    .
1515       169                       Macedonia  MKD 1958    .
1516       170                 Maldive Islands  MDV 1958    .
1517       171                         Moldova  MDA 1958    .
1518       172                         Namibia  NAM 1958    .
1519       174                       St. Lucia  LCA 1958    .
1520       175           Sao Tome and Principe  STP 1958    .
1521       176                        Slovenia  SVN 1958    .
1522       177                      Somaliland    . 1958    .
1523       178               Yemen PDR (South)    . 1958    .
1524       179             St. Kitts and Nevis  KNA 1958    .
1525       180                     St. Vincent  VCT 1958    .
1526       181                      Tajikistan  TJK 1958    .
1527       182                    Turkmenistan  TKM 1958    .
1528       183                         Ukraine  UKR 1958    .
1529       184                           Tonga  TON 1958    .
1530       185                      Uzbekistan  UZB 1958    .
1531       186                         Vietnam  VNM 1958    .
1532       187                          Cyprus  CYP 1958    .
1533       188                    Greek Cyprus    . 1958    .
1534       189 Micronesia, Federated States of  FSM 1958    .
1535       190               Republic of Yemen  YEM 1958    .
1536       191                         Germany  DEU 1958    .
1537       192                     Yugoslavia2  YUG 1958    .
1538       193                           Libya  LBY 1958    0
1539       194                       Ethiopia2  ETH 1958    .
1540       195                         Andorra  ADO 1958    .
1541       196                   Liechtenstein  LIE 1958    .
1542       197                Marshall Islands  MHL 1958    .
1543       198                           Palau  PLW 1958    .
1544       199                      San Marino  SMR 1958    .
1545         1                         Algeria  DZA 1959    .
1546         2                          Angola  AGO 1959    .
1547         3                           Benin  BEN 1959    .
1548         4                        Botswana  BWA 1959    .
1549         5                    Burkina Faso  BFA 1959    .
1550         6                         Burundi  BDI 1959    .
1551         7                        Cameroon  CMR 1959    .
1552         8                      Cape Verde  CPV 1959    .
1553         9        Central African Republic  CAF 1959    .
1554        10                            Chad  TCD 1959    .
1555        11                         Comoros  COM 1959    .
1556        12                           Congo  COG 1959    .
1557        13                        Djibouti  DJI 1959    .
1558        14                Egypt, Arab Rep.  EGY 1959    0
1559        15                        Ethiopia    . 1959    0
1560        16                           Gabon  GAB 1959    .
1561        17                     Gambia, The  GMB 1959    .
1562        18                           Ghana  GHA 1959    0
1563        19                          Guinea  GIN 1959    0
1564        20                   Guinea-Bissau  GNB 1959    .
1565        21                   Cote d'Ivoire  CIV 1959    .
1566        22                           Kenya  KEN 1959    .
1567        23                         Lesotho  LSO 1959    .
1568        24                         Liberia  LBR 1959    0
1569        25                      Madagascar  MDG 1959    .
1570        26                          Malawi  MWI 1959    .
1571        27                            Mali  MLI 1959    .
1572        28                      Mauritania  MRT 1959    .
1573        29                       Mauritius  MUS 1959    .
1574        30                         Morocco  MAR 1959    0
1575        31                      Mozambique  MOZ 1959    .
1576        32                           Niger  NER 1959    .
1577        33                         Nigeria  NGA 1959    .
1578        34                          Rwanda  RWA 1959    .
1579        35                         Senegal  SEN 1959    .
1580        36                      Seychelles  SYC 1959    .
1581        37                    Sierra Leone  SLE 1959    .
1582        38                         Somalia  SOM 1959    .
1583        39                    South Africa  ZAF 1959    0
1584        40                           Sudan  SDN 1959    0
1585        41                       Swaziland  SWZ 1959    .
1586        42                        Tanzania  TZA 1959    .
1587        43                            Togo  TGO 1959    .
1588        44                         Tunisia  TUN 1959    1
1589        45                          Uganda  UGA 1959    .
1590        46                           Zaire  ZAR 1959    .
1591        47                          Zambia  ZMB 1959    .
1592        48                        Zimbabwe  ZWE 1959    .
1593        49                    Bahamas, The  BHS 1959    .
1594        50                        Barbados  BRB 1959    .
1595        51                          Belize  BLZ 1959    .
1596        52                          Canada  CAN 1959    1
1597        53                      Costa Rica  CRI 1959    0
1598        54              Dominican Republic  DOM 1959    0
1599        55                     El Salvador  SLV 1959    0
1600        56                         Grenada  GRD 1959    .
1601        57                       Guatemala  GTM 1959    0
1602        58                           Haiti  HTI 1959    0
1603        59                        Honduras  HND 1959    0
1604        60                         Jamaica  JAM 1959    .
1605        61                          Mexico  MEX 1959    0
1606        62                       Nicaragua  NIC 1959    0
1607        63                          Panama  PAN 1959    1
1608        64             Trinidad and Tobago  TTO 1959    .
1609        66                       Argentina  ARG 1959    1
1610        67                         Bolivia  BOL 1959    0
1611        68                          Brazil  BRA 1959    0
1612        69                           Chile  CHL 1959    0
1613        70                        Colombia  COL 1959    0
1614        71                         Ecuador  ECU 1959    0
1615        72                          Guyana  GUY 1959    .
1616        73                        Paraguay  PRY 1959    0
1617        74                            Peru  PER 1959    0
1618        75                        Suriname  SUR 1959    .
1619        76                         Uruguay  URY 1959    0
1620        77                       Venezuela  VEN 1959    0
1621        78                      Bangladesh  BGD 1959    .
1622        80                           India  IND 1959    0
1623        81                       Indonesia  IDN 1959    0
1624        82              Iran, Islamic Rep.  IRN 1959    0
1625        83                            Iraq  IRQ 1959    0
1626        84                          Israel  ISR 1959    0
1627        85                           Japan  JPN 1959    1
1628        86                          Jordan  JOR 1959    0
1629        87             Korea, South (Rep.)  KOR 1959    0
1630        88                        Laos PDR  LAO 1959    0
1631        89                        Malaysia  MYS 1959    0
1632        90                        Mongolia  MNG 1959    0
1633        91                         Myanmar  MMR 1959    0
1634        92                           Nepal  NPL 1959    0
1635        93                        Pakistan  PAK 1959    0
1636        94                     Philippines  PHL 1959    0
1637        95                       Singapore  SGP 1959    .
1638        96                       Sri Lanka  LKA 1959    0
1639        97            Syrian Arab Republic  SYR 1959    0
1640        98                          Taiwan    . 1959    0
1641        99                        Thailand  THA 1959    0
1642       100             Yemen Arab Republic    . 1959    .
1643       101                         Austria  AUT 1959    0
1644       102                         Belgium  BEL 1959    0
1645       103                        Bulgaria  BGR 1959    0
1646       104                  Czechoslovakia    . 1959    0
1647       105                         Denmark  DNK 1959    0
1648       106                         Finland  FIN 1959    0
1649       108                   Germany, West    . 1959    0
1650       109                   Germany, East    . 1959    0
1651       110                          Greece  GRC 1959    0
1652       111                         Hungary  HUN 1959    0
1653       112                         Iceland  ISL 1959    0
1654       113                         Ireland  IRL 1959    0
1655       114                           Italy  ITA 1959    1
1656       115                      Luxembourg  LUX 1959    0
1657       116                           Malta  MLT 1959    .
1658       117                     Netherlands  NLD 1959    0
1659       118                          Norway  NOR 1959    0
1660       119                          Poland  POL 1959    0
1661       120                        Portugal  PRT 1959    0
1662       121                         Romania  ROM 1959    0
1663       122                           Spain  ESP 1959    0
1664       123                          Sweden  SWE 1959    0
1665       124                     Switzerland  CHE 1959    0
1666       125                          Turkey  TUR 1959    0
1667       128                      Yugoslavia    . 1959    0
1668       129                       Australia  AUS 1959    0
1669       130                            Fiji  FJI 1959    .
1670       131                     New Zealand  NZL 1959    0
1671       132                Papua New Guinea  PNG 1959    .
1672       133                 Solomon Islands  SLB 1959    .
1673       134                         Vanuatu  VUT 1959    .
1674       135                   Western Samoa  WSM 1959    .
1675       136                         Bahrain  BHR 1959    .
1676       137                          Kuwait  KWT 1959    .
1677       138                            Oman  OMN 1959    0
1678       139                           Qatar  QAT 1959    .
1679       140                    Saudi Arabia  SAU 1959    0
1680       141            United Arab Emirates  ARE 1959    .
1681       142                     Afghanistan  AFG 1959    0
1682       143                         Albania  ALB 1959    0
1683       144                         Antigua  ATG 1959    .
1684       145                         Armenia  ARM 1959    .
1685       146                           Nauru    . 1959    .
1686       147                      Azerbaijan  AZE 1959    .
1687       148                          Bhutan  BTN 1959    .
1688       149                         Belarus  BLR 1959    .
1689       150              Bosnia-Herzegovina  BIH 1959    .
1690       151                          Brunei  BRN 1959    .
1691       152                        Cambodia  KHM 1959    0
1692       153                         Croatia  HRV 1959    .
1693       154                            Cuba  CUB 1959    0
1694       155                  Czech Republic  CZE 1959    .
1695       156                 Slovak Republic  SVK 1959    .
1696       157                        Dominica  DMA 1959    .
1697       158               Equatorial Guinea  GNQ 1959    .
1698       159                         Estonia  EST 1959    .
1699       160                         Eritrea  ERI 1959    .
1700       161                         Georgia  GEO 1959    .
1701       162                      Kazakhstan  KAZ 1959    .
1702       163                        Kiribati  KIR 1959    .
1703       164        Korea, North (Dem. Rep.)  PRK 1959    0
1704       165                      Kyrgyzstan  KGZ 1959    .
1705       166                          Latvia  LVA 1959    .
1706       167                         Lebanon  LBN 1959    0
1707       168                       Lithuania  LTU 1959    .
1708       169                       Macedonia  MKD 1959    .
1709       170                 Maldive Islands  MDV 1959    .
1710       171                         Moldova  MDA 1959    .
1711       172                         Namibia  NAM 1959    .
1712       174                       St. Lucia  LCA 1959    .
1713       175           Sao Tome and Principe  STP 1959    .
1714       176                        Slovenia  SVN 1959    .
1715       177                      Somaliland    . 1959    .
1716       178               Yemen PDR (South)    . 1959    .
1717       179             St. Kitts and Nevis  KNA 1959    .
1718       180                     St. Vincent  VCT 1959    .
1719       181                      Tajikistan  TJK 1959    .
1720       182                    Turkmenistan  TKM 1959    .
1721       183                         Ukraine  UKR 1959    .
1722       184                           Tonga  TON 1959    .
1723       185                      Uzbekistan  UZB 1959    .
1724       186                         Vietnam  VNM 1959    .
1725       187                          Cyprus  CYP 1959    .
1726       188                    Greek Cyprus    . 1959    .
1727       189 Micronesia, Federated States of  FSM 1959    .
1728       190               Republic of Yemen  YEM 1959    .
1729       191                         Germany  DEU 1959    .
1730       192                     Yugoslavia2  YUG 1959    .
1731       193                           Libya  LBY 1959    0
1732       194                       Ethiopia2  ETH 1959    .
1733       195                         Andorra  ADO 1959    .
1734       196                   Liechtenstein  LIE 1959    .
1735       197                Marshall Islands  MHL 1959    .
1736       198                           Palau  PLW 1959    .
1737       199                      San Marino  SMR 1959    .
1738         1                         Algeria  DZA 1960    .
1739         2                          Angola  AGO 1960    .
1740         3                           Benin  BEN 1960    0
1741         4                        Botswana  BWA 1960    .
1742         5                    Burkina Faso  BFA 1960    0
1743         6                         Burundi  BDI 1960    .
1744         7                        Cameroon  CMR 1960    0
1745         8                      Cape Verde  CPV 1960    .
1746         9        Central African Republic  CAF 1960    0
1747        10                            Chad  TCD 1960    0
1748        11                         Comoros  COM 1960    .
1749        12                           Congo  COG 1960    0
1750        13                        Djibouti  DJI 1960    .
1751        14                Egypt, Arab Rep.  EGY 1960    0
1752        15                        Ethiopia    . 1960    0
1753        16                           Gabon  GAB 1960    0
1754        17                     Gambia, The  GMB 1960    .
1755        18                           Ghana  GHA 1960    0
1756        19                          Guinea  GIN 1960    0
1757        20                   Guinea-Bissau  GNB 1960    .
1758        21                   Cote d'Ivoire  CIV 1960    0
1759        22                           Kenya  KEN 1960    .
1760        23                         Lesotho  LSO 1960    .
1761        24                         Liberia  LBR 1960    0
1762        25                      Madagascar  MDG 1960    0
1763        26                          Malawi  MWI 1960    .
1764        27                            Mali  MLI 1960    0
1765        28                      Mauritania  MRT 1960    0
1766        29                       Mauritius  MUS 1960    .
1767        30                         Morocco  MAR 1960    0
1768        31                      Mozambique  MOZ 1960    .
1769        32                           Niger  NER 1960    0
1770        33                         Nigeria  NGA 1960    0
1771        34                          Rwanda  RWA 1960    .
1772        35                         Senegal  SEN 1960    0
1773        36                      Seychelles  SYC 1960    .
1774        37                    Sierra Leone  SLE 1960    .
1775        38                         Somalia  SOM 1960    0
1776        39                    South Africa  ZAF 1960    0
1777        40                           Sudan  SDN 1960    0
1778        41                       Swaziland  SWZ 1960    .
1779        42                        Tanzania  TZA 1960    .
1780        43                            Togo  TGO 1960    0
1781        44                         Tunisia  TUN 1960    1
1782        45                          Uganda  UGA 1960    .
1783        46                           Zaire  ZAR 1960    0
1784        47                          Zambia  ZMB 1960    .
1785        48                        Zimbabwe  ZWE 1960    .
1786        49                    Bahamas, The  BHS 1960    .
1787        50                        Barbados  BRB 1960    .
1788        51                          Belize  BLZ 1960    .
1789        52                          Canada  CAN 1960    0
1790        53                      Costa Rica  CRI 1960    0
1791        54              Dominican Republic  DOM 1960    0
1792        55                     El Salvador  SLV 1960    0
1793        56                         Grenada  GRD 1960    .
1794        57                       Guatemala  GTM 1960    0
1795        58                           Haiti  HTI 1960    0
1796        59                        Honduras  HND 1960    0
1797        60                         Jamaica  JAM 1960    .
1798        61                          Mexico  MEX 1960    0
1799        62                       Nicaragua  NIC 1960    0
1800        63                          Panama  PAN 1960    0
1801        64             Trinidad and Tobago  TTO 1960    .
1802        66                       Argentina  ARG 1960    1
1803        67                         Bolivia  BOL 1960    0
1804        68                          Brazil  BRA 1960    0
1805        69                           Chile  CHL 1960    0
1806        70                        Colombia  COL 1960    0
1807        71                         Ecuador  ECU 1960    1
1808        72                          Guyana  GUY 1960    .
1809        73                        Paraguay  PRY 1960    0
1810        74                            Peru  PER 1960    0
1811        75                        Suriname  SUR 1960    .
1812        76                         Uruguay  URY 1960    0
1813        77                       Venezuela  VEN 1960    0
1814        78                      Bangladesh  BGD 1960    .
1815        80                           India  IND 1960    0
1816        81                       Indonesia  IDN 1960    0
1817        82              Iran, Islamic Rep.  IRN 1960    0
1818        83                            Iraq  IRQ 1960    0
1819        84                          Israel  ISR 1960    0
1820        85                           Japan  JPN 1960    0
1821        86                          Jordan  JOR 1960    0
1822        87             Korea, South (Rep.)  KOR 1960    0
1823        88                        Laos PDR  LAO 1960    0
1824        89                        Malaysia  MYS 1960    0
1825        90                        Mongolia  MNG 1960    0
1826        91                         Myanmar  MMR 1960    0
1827        92                           Nepal  NPL 1960    0
1828        93                        Pakistan  PAK 1960    0
1829        94                     Philippines  PHL 1960    0
1830        95                       Singapore  SGP 1960    .
1831        96                       Sri Lanka  LKA 1960    1
1832        97            Syrian Arab Republic  SYR 1960    0
1833        98                          Taiwan    . 1960    0
1834        99                        Thailand  THA 1960    0
1835       100             Yemen Arab Republic    . 1960    .
1836       101                         Austria  AUT 1960    0
1837       102                         Belgium  BEL 1960    0
1838       103                        Bulgaria  BGR 1960    0
1839       104                  Czechoslovakia    . 1960    0
1840       105                         Denmark  DNK 1960    0
1841       106                         Finland  FIN 1960    0
1842       108                   Germany, West    . 1960    0
1843       109                   Germany, East    . 1960    0
1844       110                          Greece  GRC 1960    0
1845       111                         Hungary  HUN 1960    0
1846       112                         Iceland  ISL 1960    0
1847       113                         Ireland  IRL 1960    0
1848       114                           Italy  ITA 1960    1
1849       115                      Luxembourg  LUX 1960    0
1850       116                           Malta  MLT 1960    .
1851       117                     Netherlands  NLD 1960    0
1852       118                          Norway  NOR 1960    0
1853       119                          Poland  POL 1960    1
1854       120                        Portugal  PRT 1960    0
1855       121                         Romania  ROM 1960    0
1856       122                           Spain  ESP 1960    0
1857       123                          Sweden  SWE 1960    0
1858       124                     Switzerland  CHE 1960    0
1859       125                          Turkey  TUR 1960    0
1860       128                      Yugoslavia    . 1960    0
1861       129                       Australia  AUS 1960    0
1862       130                            Fiji  FJI 1960    .
1863       131                     New Zealand  NZL 1960    0
1864       132                Papua New Guinea  PNG 1960    .
1865       133                 Solomon Islands  SLB 1960    .
1866       134                         Vanuatu  VUT 1960    .
1867       135                   Western Samoa  WSM 1960    .
1868       136                         Bahrain  BHR 1960    .
1869       137                          Kuwait  KWT 1960    .
1870       138                            Oman  OMN 1960    0
1871       139                           Qatar  QAT 1960    .
1872       140                    Saudi Arabia  SAU 1960    0
1873       141            United Arab Emirates  ARE 1960    .
1874       142                     Afghanistan  AFG 1960    0
1875       143                         Albania  ALB 1960    0
1876       144                         Antigua  ATG 1960    .
1877       145                         Armenia  ARM 1960    .
1878       146                           Nauru    . 1960    .
1879       147                      Azerbaijan  AZE 1960    .
1880       148                          Bhutan  BTN 1960    .
1881       149                         Belarus  BLR 1960    .
1882       150              Bosnia-Herzegovina  BIH 1960    .
1883       151                          Brunei  BRN 1960    .
1884       152                        Cambodia  KHM 1960    0
1885       153                         Croatia  HRV 1960    .
1886       154                            Cuba  CUB 1960    0
1887       155                  Czech Republic  CZE 1960    .
1888       156                 Slovak Republic  SVK 1960    .
1889       157                        Dominica  DMA 1960    .
1890       158               Equatorial Guinea  GNQ 1960    .
1891       159                         Estonia  EST 1960    .
1892       160                         Eritrea  ERI 1960    .
1893       161                         Georgia  GEO 1960    .
1894       162                      Kazakhstan  KAZ 1960    .
1895       163                        Kiribati  KIR 1960    .
1896       164        Korea, North (Dem. Rep.)  PRK 1960    0
1897       165                      Kyrgyzstan  KGZ 1960    .
1898       166                          Latvia  LVA 1960    .
1899       167                         Lebanon  LBN 1960    0
1900       168                       Lithuania  LTU 1960    .
1901       169                       Macedonia  MKD 1960    .
1902       170                 Maldive Islands  MDV 1960    .
1903       171                         Moldova  MDA 1960    .
1904       172                         Namibia  NAM 1960    .
1905       174                       St. Lucia  LCA 1960    .
1906       175           Sao Tome and Principe  STP 1960    .
1907       176                        Slovenia  SVN 1960    .
1908       177                      Somaliland    . 1960    .
1909       178               Yemen PDR (South)    . 1960    .
1910       179             St. Kitts and Nevis  KNA 1960    .
1911       180                     St. Vincent  VCT 1960    .
1912       181                      Tajikistan  TJK 1960    .
1913       182                    Turkmenistan  TKM 1960    .
1914       183                         Ukraine  UKR 1960    .
1915       184                           Tonga  TON 1960    .
1916       185                      Uzbekistan  UZB 1960    .
1917       186                         Vietnam  VNM 1960    .
1918       187                          Cyprus  CYP 1960    0
1919       188                    Greek Cyprus    . 1960    .
1920       189 Micronesia, Federated States of  FSM 1960    .
1921       190               Republic of Yemen  YEM 1960    .
1922       191                         Germany  DEU 1960    .
1923       192                     Yugoslavia2  YUG 1960    .
1924       193                           Libya  LBY 1960    0
1925       194                       Ethiopia2  ETH 1960    .
1926       195                         Andorra  ADO 1960    .
1927       196                   Liechtenstein  LIE 1960    .
1928       197                Marshall Islands  MHL 1960    .
1929       198                           Palau  PLW 1960    .
1930       199                      San Marino  SMR 1960    .
1931         1                         Algeria  DZA 1961    .
1932         2                          Angola  AGO 1961    .
1933         3                           Benin  BEN 1961    0
1934         4                        Botswana  BWA 1961    .
1935         5                    Burkina Faso  BFA 1961    0
1936         6                         Burundi  BDI 1961    .
1937         7                        Cameroon  CMR 1961    0
1938         8                      Cape Verde  CPV 1961    .
1939         9        Central African Republic  CAF 1961    0
1940        10                            Chad  TCD 1961    0
1941        11                         Comoros  COM 1961    .
1942        12                           Congo  COG 1961    0
1943        13                        Djibouti  DJI 1961    .
1944        14                Egypt, Arab Rep.  EGY 1961    1
1945        15                        Ethiopia    . 1961    0
1946        16                           Gabon  GAB 1961    0
1947        17                     Gambia, The  GMB 1961    .
1948        18                           Ghana  GHA 1961    0
1949        19                          Guinea  GIN 1961    0
1950        20                   Guinea-Bissau  GNB 1961    .
1951        21                   Cote d'Ivoire  CIV 1961    0
1952        22                           Kenya  KEN 1961    .
1953        23                         Lesotho  LSO 1961    .
1954        24                         Liberia  LBR 1961    1
1955        25                      Madagascar  MDG 1961    0
1956        26                          Malawi  MWI 1961    .
1957        27                            Mali  MLI 1961    0
1958        28                      Mauritania  MRT 1961    0
1959        29                       Mauritius  MUS 1961    .
1960        30                         Morocco  MAR 1961    0
1961        31                      Mozambique  MOZ 1961    .
1962        32                           Niger  NER 1961    0
1963        33                         Nigeria  NGA 1961    0
1964        34                          Rwanda  RWA 1961    .
1965        35                         Senegal  SEN 1961    0
1966        36                      Seychelles  SYC 1961    .
1967        37                    Sierra Leone  SLE 1961    0
1968        38                         Somalia  SOM 1961    0
1969        39                    South Africa  ZAF 1961    0
1970        40                           Sudan  SDN 1961    0
1971        41                       Swaziland  SWZ 1961    .
1972        42                        Tanzania  TZA 1961    0
1973        43                            Togo  TGO 1961    0
1974        44                         Tunisia  TUN 1961    0
1975        45                          Uganda  UGA 1961    .
1976        46                           Zaire  ZAR 1961    0
1977        47                          Zambia  ZMB 1961    .
1978        48                        Zimbabwe  ZWE 1961    .
1979        49                    Bahamas, The  BHS 1961    .
1980        50                        Barbados  BRB 1961    .
1981        51                          Belize  BLZ 1961    .
1982        52                          Canada  CAN 1961    0
1983        53                      Costa Rica  CRI 1961    0
1984        54              Dominican Republic  DOM 1961    0
1985        55                     El Salvador  SLV 1961    0
1986        56                         Grenada  GRD 1961    .
1987        57                       Guatemala  GTM 1961    0
1988        58                           Haiti  HTI 1961    0
1989        59                        Honduras  HND 1961    0
1990        60                         Jamaica  JAM 1961    .
1991        61                          Mexico  MEX 1961    0
1992        62                       Nicaragua  NIC 1961    0
1993        63                          Panama  PAN 1961    0
1994        64             Trinidad and Tobago  TTO 1961    .
1995        66                       Argentina  ARG 1961    0
1996        67                         Bolivia  BOL 1961    0
1997        68                          Brazil  BRA 1961    0
1998        69                           Chile  CHL 1961    1
1999        70                        Colombia  COL 1961    0
2000        71                         Ecuador  ECU 1961    1
2001        72                          Guyana  GUY 1961    .
2002        73                        Paraguay  PRY 1961    0
2003        74                            Peru  PER 1961    0
2004        75                        Suriname  SUR 1961    .
2005        76                         Uruguay  URY 1961    0
2006        77                       Venezuela  VEN 1961    0
2007        78                      Bangladesh  BGD 1961    .
2008        80                           India  IND 1961    0
2009        81                       Indonesia  IDN 1961    0
2010        82              Iran, Islamic Rep.  IRN 1961    0
2011        83                            Iraq  IRQ 1961    0
2012        84                          Israel  ISR 1961    0
2013        85                           Japan  JPN 1961    0
2014        86                          Jordan  JOR 1961    0
2015        87             Korea, South (Rep.)  KOR 1961    0
2016        88                        Laos PDR  LAO 1961    0
2017        89                        Malaysia  MYS 1961    0
2018        90                        Mongolia  MNG 1961    0
2019        91                         Myanmar  MMR 1961    0
2020        92                           Nepal  NPL 1961    0
2021        93                        Pakistan  PAK 1961    0
2022        94                     Philippines  PHL 1961    0
2023        95                       Singapore  SGP 1961    .
2024        96                       Sri Lanka  LKA 1961    1
2025        97            Syrian Arab Republic  SYR 1961    1
2026        98                          Taiwan    . 1961    0
2027        99                        Thailand  THA 1961    0
2028       100             Yemen Arab Republic    . 1961    .
2029       101                         Austria  AUT 1961    0
2030       102                         Belgium  BEL 1961    0
2031       103                        Bulgaria  BGR 1961    0
2032       104                  Czechoslovakia    . 1961    0
2033       105                         Denmark  DNK 1961    0
2034       106                         Finland  FIN 1961    0
2035       108                   Germany, West    . 1961    0
2036       109                   Germany, East    . 1961    0
2037       110                          Greece  GRC 1961    0
2038       111                         Hungary  HUN 1961    0
2039       112                         Iceland  ISL 1961    0
2040       113                         Ireland  IRL 1961    0
2041       114                           Italy  ITA 1961    0
2042       115                      Luxembourg  LUX 1961    0
2043       116                           Malta  MLT 1961    .
2044       117                     Netherlands  NLD 1961    0
2045       118                          Norway  NOR 1961    0
2046       119                          Poland  POL 1961    0
2047       120                        Portugal  PRT 1961    0
2048       121                         Romania  ROM 1961    0
2049       122                           Spain  ESP 1961    0
2050       123                          Sweden  SWE 1961    0
2051       124                     Switzerland  CHE 1961    0
2052       125                          Turkey  TUR 1961    1
2053       128                      Yugoslavia    . 1961    0
2054       129                       Australia  AUS 1961    0
2055       130                            Fiji  FJI 1961    .
2056       131                     New Zealand  NZL 1961    0
2057       132                Papua New Guinea  PNG 1961    .
2058       133                 Solomon Islands  SLB 1961    .
2059       134                         Vanuatu  VUT 1961    .
2060       135                   Western Samoa  WSM 1961    .
2061       136                         Bahrain  BHR 1961    .
2062       137                          Kuwait  KWT 1961    0
2063       138                            Oman  OMN 1961    0
2064       139                           Qatar  QAT 1961    .
2065       140                    Saudi Arabia  SAU 1961    0
2066       141            United Arab Emirates  ARE 1961    .
2067       142                     Afghanistan  AFG 1961    0
2068       143                         Albania  ALB 1961    0
2069       144                         Antigua  ATG 1961    .
2070       145                         Armenia  ARM 1961    .
2071       146                           Nauru    . 1961    .
2072       147                      Azerbaijan  AZE 1961    .
2073       148                          Bhutan  BTN 1961    .
2074       149                         Belarus  BLR 1961    .
2075       150              Bosnia-Herzegovina  BIH 1961    .
2076       151                          Brunei  BRN 1961    .
2077       152                        Cambodia  KHM 1961    0
2078       153                         Croatia  HRV 1961    .
2079       154                            Cuba  CUB 1961    0
2080       155                  Czech Republic  CZE 1961    .
2081       156                 Slovak Republic  SVK 1961    .
2082       157                        Dominica  DMA 1961    .
2083       158               Equatorial Guinea  GNQ 1961    .
2084       159                         Estonia  EST 1961    .
2085       160                         Eritrea  ERI 1961    .
2086       161                         Georgia  GEO 1961    .
2087       162                      Kazakhstan  KAZ 1961    .
2088       163                        Kiribati  KIR 1961    .
2089       164        Korea, North (Dem. Rep.)  PRK 1961    0
2090       165                      Kyrgyzstan  KGZ 1961    .
2091       166                          Latvia  LVA 1961    .
2092       167                         Lebanon  LBN 1961    0
2093       168                       Lithuania  LTU 1961    .
2094       169                       Macedonia  MKD 1961    .
2095       170                 Maldive Islands  MDV 1961    .
2096       171                         Moldova  MDA 1961    .
2097       172                         Namibia  NAM 1961    .
2098       174                       St. Lucia  LCA 1961    .
2099       175           Sao Tome and Principe  STP 1961    .
2100       176                        Slovenia  SVN 1961    .
2101       177                      Somaliland    . 1961    .
2102       178               Yemen PDR (South)    . 1961    .
2103       179             St. Kitts and Nevis  KNA 1961    .
2104       180                     St. Vincent  VCT 1961    .
2105       181                      Tajikistan  TJK 1961    .
2106       182                    Turkmenistan  TKM 1961    .
2107       183                         Ukraine  UKR 1961    .
2108       184                           Tonga  TON 1961    .
2109       185                      Uzbekistan  UZB 1961    .
2110       186                         Vietnam  VNM 1961    .
2111       187                          Cyprus  CYP 1961    0
2112       188                    Greek Cyprus    . 1961    .
2113       189 Micronesia, Federated States of  FSM 1961    .
2114       190               Republic of Yemen  YEM 1961    .
2115       191                         Germany  DEU 1961    .
2116       192                     Yugoslavia2  YUG 1961    .
2117       193                           Libya  LBY 1961    0
2118       194                       Ethiopia2  ETH 1961    .
2119       195                         Andorra  ADO 1961    .
2120       196                   Liechtenstein  LIE 1961    .
2121       197                Marshall Islands  MHL 1961    .
2122       198                           Palau  PLW 1961    .
2123       199                      San Marino  SMR 1961    .
2124         1                         Algeria  DZA 1962    0
2125         2                          Angola  AGO 1962    .
2126         3                           Benin  BEN 1962    0
2127         4                        Botswana  BWA 1962    .
2128         5                    Burkina Faso  BFA 1962    0
2129         6                         Burundi  BDI 1962    0
2130         7                        Cameroon  CMR 1962    0
2131         8                      Cape Verde  CPV 1962    .
2132         9        Central African Republic  CAF 1962    0
2133        10                            Chad  TCD 1962    0
2134        11                         Comoros  COM 1962    .
2135        12                           Congo  COG 1962    0
2136        13                        Djibouti  DJI 1962    .
2137        14                Egypt, Arab Rep.  EGY 1962    1
2138        15                        Ethiopia    . 1962    0
2139        16                           Gabon  GAB 1962    0
2140        17                     Gambia, The  GMB 1962    .
2141        18                           Ghana  GHA 1962    1
2142        19                          Guinea  GIN 1962    0
2143        20                   Guinea-Bissau  GNB 1962    .
2144        21                   Cote d'Ivoire  CIV 1962    0
2145        22                           Kenya  KEN 1962    .
2146        23                         Lesotho  LSO 1962    .
2147        24                         Liberia  LBR 1962    0
2148        25                      Madagascar  MDG 1962    0
2149        26                          Malawi  MWI 1962    .
2150        27                            Mali  MLI 1962    0
2151        28                      Mauritania  MRT 1962    0
2152        29                       Mauritius  MUS 1962    .
2153        30                         Morocco  MAR 1962    0
2154        31                      Mozambique  MOZ 1962    .
2155        32                           Niger  NER 1962    0
2156        33                         Nigeria  NGA 1962    0
2157        34                          Rwanda  RWA 1962    0
2158        35                         Senegal  SEN 1962    0
2159        36                      Seychelles  SYC 1962    .
2160        37                    Sierra Leone  SLE 1962    0
2161        38                         Somalia  SOM 1962    0
2162        39                    South Africa  ZAF 1962    0
2163        40                           Sudan  SDN 1962    0
2164        41                       Swaziland  SWZ 1962    .
2165        42                        Tanzania  TZA 1962    0
2166        43                            Togo  TGO 1962    0
2167        44                         Tunisia  TUN 1962    0
2168        45                          Uganda  UGA 1962    0
2169        46                           Zaire  ZAR 1962    0
2170        47                          Zambia  ZMB 1962    .
2171        48                        Zimbabwe  ZWE 1962    .
2172        49                    Bahamas, The  BHS 1962    .
2173        50                        Barbados  BRB 1962    .
2174        51                          Belize  BLZ 1962    .
2175        52                          Canada  CAN 1962    0
2176        53                      Costa Rica  CRI 1962    0
2177        54              Dominican Republic  DOM 1962    0
2178        55                     El Salvador  SLV 1962    0
2179        56                         Grenada  GRD 1962    .
2180        57                       Guatemala  GTM 1962    0
2181        58                           Haiti  HTI 1962    0
2182        59                        Honduras  HND 1962    0
2183        60                         Jamaica  JAM 1962    0
2184        61                          Mexico  MEX 1962    0
2185        62                       Nicaragua  NIC 1962    0
2186        63                          Panama  PAN 1962    0
2187        64             Trinidad and Tobago  TTO 1962    0
2188        66                       Argentina  ARG 1962    0
2189        67                         Bolivia  BOL 1962    0
2190        68                          Brazil  BRA 1962    0
2191        69                           Chile  CHL 1962    1
2192        70                        Colombia  COL 1962    0
2193        71                         Ecuador  ECU 1962    0
2194        72                          Guyana  GUY 1962    .
2195        73                        Paraguay  PRY 1962    0
2196        74                            Peru  PER 1962    0
2197        75                        Suriname  SUR 1962    .
2198        76                         Uruguay  URY 1962    0
2199        77                       Venezuela  VEN 1962    1
2200        78                      Bangladesh  BGD 1962    .
2201        80                           India  IND 1962    0
2202        81                       Indonesia  IDN 1962    0
2203        82              Iran, Islamic Rep.  IRN 1962    0
2204        83                            Iraq  IRQ 1962    0
2205        84                          Israel  ISR 1962    0
2206        85                           Japan  JPN 1962    0
2207        86                          Jordan  JOR 1962    0
2208        87             Korea, South (Rep.)  KOR 1962    0
2209        88                        Laos PDR  LAO 1962    0
2210        89                        Malaysia  MYS 1962    0
2211        90                        Mongolia  MNG 1962    0
2212        91                         Myanmar  MMR 1962    0
2213        92                           Nepal  NPL 1962    0
2214        93                        Pakistan  PAK 1962    0
2215        94                     Philippines  PHL 1962    0
2216        95                       Singapore  SGP 1962    .
2217        96                       Sri Lanka  LKA 1962    0
2218        97            Syrian Arab Republic  SYR 1962    0
2219        98                          Taiwan    . 1962    0
2220        99                        Thailand  THA 1962    0
2221       100             Yemen Arab Republic    . 1962    .
2222       101                         Austria  AUT 1962    0
2223       102                         Belgium  BEL 1962    0
2224       103                        Bulgaria  BGR 1962    0
2225       104                  Czechoslovakia    . 1962    0
2226       105                         Denmark  DNK 1962    0
2227       106                         Finland  FIN 1962    0
2228       108                   Germany, West    . 1962    0
2229       109                   Germany, East    . 1962    0
2230       110                          Greece  GRC 1962    0
2231       111                         Hungary  HUN 1962    0
2232       112                         Iceland  ISL 1962    0
2233       113                         Ireland  IRL 1962    1
2234       114                           Italy  ITA 1962    0
2235       115                      Luxembourg  LUX 1962    0
2236       116                           Malta  MLT 1962    .
2237       117                     Netherlands  NLD 1962    0
2238       118                          Norway  NOR 1962    0
2239       119                          Poland  POL 1962    0
2240       120                        Portugal  PRT 1962    0
2241       121                         Romania  ROM 1962    1
2242       122                           Spain  ESP 1962    0
2243       123                          Sweden  SWE 1962    0
2244       124                     Switzerland  CHE 1962    0
2245       125                          Turkey  TUR 1962    0
2246       128                      Yugoslavia    . 1962    0
2247       129                       Australia  AUS 1962    0
2248       130                            Fiji  FJI 1962    .
2249       131                     New Zealand  NZL 1962    0
2250       132                Papua New Guinea  PNG 1962    .
2251       133                 Solomon Islands  SLB 1962    .
2252       134                         Vanuatu  VUT 1962    .
2253       135                   Western Samoa  WSM 1962    0
2254       136                         Bahrain  BHR 1962    .
2255       137                          Kuwait  KWT 1962    0
2256       138                            Oman  OMN 1962    0
2257       139                           Qatar  QAT 1962    .
2258       140                    Saudi Arabia  SAU 1962    0
2259       141            United Arab Emirates  ARE 1962    .
2260       142                     Afghanistan  AFG 1962    0
2261       143                         Albania  ALB 1962    0
2262       144                         Antigua  ATG 1962    .
2263       145                         Armenia  ARM 1962    .
2264       146                           Nauru    . 1962    .
2265       147                      Azerbaijan  AZE 1962    .
2266       148                          Bhutan  BTN 1962    .
2267       149                         Belarus  BLR 1962    .
2268       150              Bosnia-Herzegovina  BIH 1962    .
2269       151                          Brunei  BRN 1962    .
2270       152                        Cambodia  KHM 1962    0
2271       153                         Croatia  HRV 1962    .
2272       154                            Cuba  CUB 1962    0
2273       155                  Czech Republic  CZE 1962    .
2274       156                 Slovak Republic  SVK 1962    .
2275       157                        Dominica  DMA 1962    .
2276       158               Equatorial Guinea  GNQ 1962    .
2277       159                         Estonia  EST 1962    .
2278       160                         Eritrea  ERI 1962    .
2279       161                         Georgia  GEO 1962    .
2280       162                      Kazakhstan  KAZ 1962    .
2281       163                        Kiribati  KIR 1962    .
2282       164        Korea, North (Dem. Rep.)  PRK 1962    0
2283       165                      Kyrgyzstan  KGZ 1962    .
2284       166                          Latvia  LVA 1962    .
2285       167                         Lebanon  LBN 1962    0
2286       168                       Lithuania  LTU 1962    .
2287       169                       Macedonia  MKD 1962    .
2288       170                 Maldive Islands  MDV 1962    .
2289       171                         Moldova  MDA 1962    .
2290       172                         Namibia  NAM 1962    .
2291       174                       St. Lucia  LCA 1962    .
2292       175           Sao Tome and Principe  STP 1962    .
2293       176                        Slovenia  SVN 1962    .
2294       177                      Somaliland    . 1962    .
2295       178               Yemen PDR (South)    . 1962    .
2296       179             St. Kitts and Nevis  KNA 1962    .
2297       180                     St. Vincent  VCT 1962    .
2298       181                      Tajikistan  TJK 1962    .
2299       182                    Turkmenistan  TKM 1962    .
2300       183                         Ukraine  UKR 1962    .
2301       184                           Tonga  TON 1962    .
2302       185                      Uzbekistan  UZB 1962    .
2303       186                         Vietnam  VNM 1962    .
2304       187                          Cyprus  CYP 1962    0
2305       188                    Greek Cyprus    . 1962    .
2306       189 Micronesia, Federated States of  FSM 1962    .
2307       190               Republic of Yemen  YEM 1962    .
2308       191                         Germany  DEU 1962    .
2309       192                     Yugoslavia2  YUG 1962    .
2310       193                           Libya  LBY 1962    0
2311       194                       Ethiopia2  ETH 1962    .
2312       195                         Andorra  ADO 1962    .
2313       196                   Liechtenstein  LIE 1962    .
2314       197                Marshall Islands  MHL 1962    .
2315       198                           Palau  PLW 1962    .
2316       199                      San Marino  SMR 1962    .
2317         1                         Algeria  DZA 1963    0
2318         2                          Angola  AGO 1963    .
2319         3                           Benin  BEN 1963    0
2320         4                        Botswana  BWA 1963    .
2321         5                    Burkina Faso  BFA 1963    0
2322         6                         Burundi  BDI 1963    0
2323         7                        Cameroon  CMR 1963    0
2324         8                      Cape Verde  CPV 1963    .
2325         9        Central African Republic  CAF 1963    0
2326        10                            Chad  TCD 1963    0
2327        11                         Comoros  COM 1963    .
2328        12                           Congo  COG 1963    0
2329        13                        Djibouti  DJI 1963    .
2330        14                Egypt, Arab Rep.  EGY 1963    0
2331        15                        Ethiopia    . 1963    0
2332        16                           Gabon  GAB 1963    0
2333        17                     Gambia, The  GMB 1963    .
2334        18                           Ghana  GHA 1963    1
2335        19                          Guinea  GIN 1963    0
2336        20                   Guinea-Bissau  GNB 1963    .
2337        21                   Cote d'Ivoire  CIV 1963    0
2338        22                           Kenya  KEN 1963    0
2339        23                         Lesotho  LSO 1963    .
2340        24                         Liberia  LBR 1963    0
2341        25                      Madagascar  MDG 1963    0
2342        26                          Malawi  MWI 1963    .
2343        27                            Mali  MLI 1963    0
2344        28                      Mauritania  MRT 1963    0
2345        29                       Mauritius  MUS 1963    .
2346        30                         Morocco  MAR 1963    1
2347        31                      Mozambique  MOZ 1963    .
2348        32                           Niger  NER 1963    0
2349        33                         Nigeria  NGA 1963    0
2350        34                          Rwanda  RWA 1963    0
2351        35                         Senegal  SEN 1963    0
2352        36                      Seychelles  SYC 1963    .
2353        37                    Sierra Leone  SLE 1963    0
2354        38                         Somalia  SOM 1963    0
2355        39                    South Africa  ZAF 1963    0
2356        40                           Sudan  SDN 1963    0
2357        41                       Swaziland  SWZ 1963    .
2358        42                        Tanzania  TZA 1963    0
2359        43                            Togo  TGO 1963    0
2360        44                         Tunisia  TUN 1963    0
2361        45                          Uganda  UGA 1963    0
2362        46                           Zaire  ZAR 1963    0
2363        47                          Zambia  ZMB 1963    .
2364        48                        Zimbabwe  ZWE 1963    .
2365        49                    Bahamas, The  BHS 1963    .
2366        50                        Barbados  BRB 1963    .
2367        51                          Belize  BLZ 1963    .
2368        52                          Canada  CAN 1963    0
2369        53                      Costa Rica  CRI 1963    0
2370        54              Dominican Republic  DOM 1963    0
2371        55                     El Salvador  SLV 1963    0
2372        56                         Grenada  GRD 1963    .
2373        57                       Guatemala  GTM 1963    0
2374        58                           Haiti  HTI 1963    0
2375        59                        Honduras  HND 1963    0
2376        60                         Jamaica  JAM 1963    0
2377        61                          Mexico  MEX 1963    0
2378        62                       Nicaragua  NIC 1963    0
2379        63                          Panama  PAN 1963    0
2380        64             Trinidad and Tobago  TTO 1963    0
2381        66                       Argentina  ARG 1963    0
2382        67                         Bolivia  BOL 1963    0
2383        68                          Brazil  BRA 1963    1
2384        69                           Chile  CHL 1963    0
2385        70                        Colombia  COL 1963    0
2386        71                         Ecuador  ECU 1963    0
2387        72                          Guyana  GUY 1963    .
2388        73                        Paraguay  PRY 1963    0
2389        74                            Peru  PER 1963    0
2390        75                        Suriname  SUR 1963    .
2391        76                         Uruguay  URY 1963    0
2392        77                       Venezuela  VEN 1963    1
2393        78                      Bangladesh  BGD 1963    .
2394        80                           India  IND 1963    0
2395        81                       Indonesia  IDN 1963    0
2396        82              Iran, Islamic Rep.  IRN 1963    0
2397        83                            Iraq  IRQ 1963    0
2398        84                          Israel  ISR 1963    0
2399        85                           Japan  JPN 1963    0
2400        86                          Jordan  JOR 1963    0
2401        87             Korea, South (Rep.)  KOR 1963    0
2402        88                        Laos PDR  LAO 1963    0
2403        89                        Malaysia  MYS 1963    0
2404        90                        Mongolia  MNG 1963    0
2405        91                         Myanmar  MMR 1963    0
2406        92                           Nepal  NPL 1963    0
2407        93                        Pakistan  PAK 1963    0
2408        94                     Philippines  PHL 1963    1
2409        95                       Singapore  SGP 1963    .
2410        96                       Sri Lanka  LKA 1963    0
2411        97            Syrian Arab Republic  SYR 1963    0
2412        98                          Taiwan    . 1963    0
2413        99                        Thailand  THA 1963    0
2414       100             Yemen Arab Republic    . 1963    .
2415       101                         Austria  AUT 1963    0
2416       102                         Belgium  BEL 1963    0
2417       103                        Bulgaria  BGR 1963    0
2418       104                  Czechoslovakia    . 1963    0
2419       105                         Denmark  DNK 1963    0
2420       106                         Finland  FIN 1963    0
2421       108                   Germany, West    . 1963    0
2422       109                   Germany, East    . 1963    0
2423       110                          Greece  GRC 1963    0
2424       111                         Hungary  HUN 1963    0
2425       112                         Iceland  ISL 1963    0
2426       113                         Ireland  IRL 1963    0
2427       114                           Italy  ITA 1963    0
2428       115                      Luxembourg  LUX 1963    0
2429       116                           Malta  MLT 1963    .
2430       117                     Netherlands  NLD 1963    0
2431       118                          Norway  NOR 1963    1
2432       119                          Poland  POL 1963    0
2433       120                        Portugal  PRT 1963    0
2434       121                         Romania  ROM 1963    0
2435       122                           Spain  ESP 1963    0
2436       123                          Sweden  SWE 1963    0
2437       124                     Switzerland  CHE 1963    0
2438       125                          Turkey  TUR 1963    0
2439       128                      Yugoslavia    . 1963    0
2440       129                       Australia  AUS 1963    0
2441       130                            Fiji  FJI 1963    .
2442       131                     New Zealand  NZL 1963    0
2443       132                Papua New Guinea  PNG 1963    .
2444       133                 Solomon Islands  SLB 1963    .
2445       134                         Vanuatu  VUT 1963    .
2446       135                   Western Samoa  WSM 1963    0
2447       136                         Bahrain  BHR 1963    .
2448       137                          Kuwait  KWT 1963    0
2449       138                            Oman  OMN 1963    0
2450       139                           Qatar  QAT 1963    .
2451       140                    Saudi Arabia  SAU 1963    0
2452       141            United Arab Emirates  ARE 1963    .
2453       142                     Afghanistan  AFG 1963    0
2454       143                         Albania  ALB 1963    0
2455       144                         Antigua  ATG 1963    .
2456       145                         Armenia  ARM 1963    .
2457       146                           Nauru    . 1963    .
2458       147                      Azerbaijan  AZE 1963    .
2459       148                          Bhutan  BTN 1963    .
2460       149                         Belarus  BLR 1963    .
2461       150              Bosnia-Herzegovina  BIH 1963    .
2462       151                          Brunei  BRN 1963    .
2463       152                        Cambodia  KHM 1963    0
2464       153                         Croatia  HRV 1963    .
2465       154                            Cuba  CUB 1963    0
2466       155                  Czech Republic  CZE 1963    .
2467       156                 Slovak Republic  SVK 1963    .
2468       157                        Dominica  DMA 1963    .
2469       158               Equatorial Guinea  GNQ 1963    .
2470       159                         Estonia  EST 1963    .
2471       160                         Eritrea  ERI 1963    .
2472       161                         Georgia  GEO 1963    .
2473       162                      Kazakhstan  KAZ 1963    .
2474       163                        Kiribati  KIR 1963    .
2475       164        Korea, North (Dem. Rep.)  PRK 1963    0
2476       165                      Kyrgyzstan  KGZ 1963    .
2477       166                          Latvia  LVA 1963    .
2478       167                         Lebanon  LBN 1963    0
2479       168                       Lithuania  LTU 1963    .
2480       169                       Macedonia  MKD 1963    .
2481       170                 Maldive Islands  MDV 1963    .
2482       171                         Moldova  MDA 1963    .
2483       172                         Namibia  NAM 1963    .
2484       174                       St. Lucia  LCA 1963    .
2485       175           Sao Tome and Principe  STP 1963    .
2486       176                        Slovenia  SVN 1963    .
2487       177                      Somaliland    . 1963    .
2488       178               Yemen PDR (South)    . 1963    .
2489       179             St. Kitts and Nevis  KNA 1963    .
2490       180                     St. Vincent  VCT 1963    .
2491       181                      Tajikistan  TJK 1963    .
2492       182                    Turkmenistan  TKM 1963    .
2493       183                         Ukraine  UKR 1963    .
2494       184                           Tonga  TON 1963    .
2495       185                      Uzbekistan  UZB 1963    .
2496       186                         Vietnam  VNM 1963    .
2497       187                          Cyprus  CYP 1963    0
2498       188                    Greek Cyprus    . 1963    .
2499       189 Micronesia, Federated States of  FSM 1963    .
2500       190               Republic of Yemen  YEM 1963    .
2501       191                         Germany  DEU 1963    .
2502       192                     Yugoslavia2  YUG 1963    .
2503       193                           Libya  LBY 1963    0
2504       194                       Ethiopia2  ETH 1963    .
2505       195                         Andorra  ADO 1963    .
2506       196                   Liechtenstein  LIE 1963    .
2507       197                Marshall Islands  MHL 1963    .
2508       198                           Palau  PLW 1963    .
2509       199                      San Marino  SMR 1963    .
2510         1                         Algeria  DZA 1964    0
2511         2                          Angola  AGO 1964    .
2512         3                           Benin  BEN 1964    0
2513         4                        Botswana  BWA 1964    .
2514         5                    Burkina Faso  BFA 1964    0
2515         6                         Burundi  BDI 1964    0
2516         7                        Cameroon  CMR 1964    0
2517         8                      Cape Verde  CPV 1964    .
2518         9        Central African Republic  CAF 1964    0
2519        10                            Chad  TCD 1964    0
2520        11                         Comoros  COM 1964    .
2521        12                           Congo  COG 1964    0
2522        13                        Djibouti  DJI 1964    .
2523        14                Egypt, Arab Rep.  EGY 1964    0
2524        15                        Ethiopia    . 1964    0
2525        16                           Gabon  GAB 1964    0
2526        17                     Gambia, The  GMB 1964    .
2527        18                           Ghana  GHA 1964    0
2528        19                          Guinea  GIN 1964    0
2529        20                   Guinea-Bissau  GNB 1964    .
2530        21                   Cote d'Ivoire  CIV 1964    1
2531        22                           Kenya  KEN 1964    0
2532        23                         Lesotho  LSO 1964    .
2533        24                         Liberia  LBR 1964    0
2534        25                      Madagascar  MDG 1964    0
2535        26                          Malawi  MWI 1964    0
2536        27                            Mali  MLI 1964    0
2537        28                      Mauritania  MRT 1964    0
2538        29                       Mauritius  MUS 1964    .
2539        30                         Morocco  MAR 1964    1
2540        31                      Mozambique  MOZ 1964    .
2541        32                           Niger  NER 1964    0
2542        33                         Nigeria  NGA 1964    0
2543        34                          Rwanda  RWA 1964    0
2544        35                         Senegal  SEN 1964    0
2545        36                      Seychelles  SYC 1964    .
2546        37                    Sierra Leone  SLE 1964    0
2547        38                         Somalia  SOM 1964    0
2548        39                    South Africa  ZAF 1964    0
2549        40                           Sudan  SDN 1964    0
2550        41                       Swaziland  SWZ 1964    .
2551        42                        Tanzania  TZA 1964    0
2552        43                            Togo  TGO 1964    0
2553        44                         Tunisia  TUN 1964    0
2554        45                          Uganda  UGA 1964    0
2555        46                           Zaire  ZAR 1964    0
2556        47                          Zambia  ZMB 1964    0
2557        48                        Zimbabwe  ZWE 1964    .
2558        49                    Bahamas, The  BHS 1964    .
2559        50                        Barbados  BRB 1964    .
2560        51                          Belize  BLZ 1964    .
2561        52                          Canada  CAN 1964    0
2562        53                      Costa Rica  CRI 1964    0
2563        54              Dominican Republic  DOM 1964    0
2564        55                     El Salvador  SLV 1964    0
2565        56                         Grenada  GRD 1964    .
2566        57                       Guatemala  GTM 1964    0
2567        58                           Haiti  HTI 1964    0
2568        59                        Honduras  HND 1964    0
2569        60                         Jamaica  JAM 1964    0
2570        61                          Mexico  MEX 1964    0
2571        62                       Nicaragua  NIC 1964    0
2572        63                          Panama  PAN 1964    0
2573        64             Trinidad and Tobago  TTO 1964    0
2574        66                       Argentina  ARG 1964    0
2575        67                         Bolivia  BOL 1964    1
2576        68                          Brazil  BRA 1964    1
2577        69                           Chile  CHL 1964    0
2578        70                        Colombia  COL 1964    0
2579        71                         Ecuador  ECU 1964    0
2580        72                          Guyana  GUY 1964    .
2581        73                        Paraguay  PRY 1964    0
2582        74                            Peru  PER 1964    0
2583        75                        Suriname  SUR 1964    .
2584        76                         Uruguay  URY 1964    0
2585        77                       Venezuela  VEN 1964    0
2586        78                      Bangladesh  BGD 1964    .
2587        80                           India  IND 1964    0
2588        81                       Indonesia  IDN 1964    0
2589        82              Iran, Islamic Rep.  IRN 1964    0
2590        83                            Iraq  IRQ 1964    0
2591        84                          Israel  ISR 1964    0
2592        85                           Japan  JPN 1964    0
2593        86                          Jordan  JOR 1964    0
2594        87             Korea, South (Rep.)  KOR 1964    0
2595        88                        Laos PDR  LAO 1964    0
2596        89                        Malaysia  MYS 1964    0
2597        90                        Mongolia  MNG 1964    0
2598        91                         Myanmar  MMR 1964    0
2599        92                           Nepal  NPL 1964    0
2600        93                        Pakistan  PAK 1964    0
2601        94                     Philippines  PHL 1964    0
2602        95                       Singapore  SGP 1964    .
2603        96                       Sri Lanka  LKA 1964    0
2604        97            Syrian Arab Republic  SYR 1964    0
2605        98                          Taiwan    . 1964    0
2606        99                        Thailand  THA 1964    0
2607       100             Yemen Arab Republic    . 1964    .
2608       101                         Austria  AUT 1964    0
2609       102                         Belgium  BEL 1964    0
2610       103                        Bulgaria  BGR 1964    0
2611       104                  Czechoslovakia    . 1964    1
2612       105                         Denmark  DNK 1964    0
2613       106                         Finland  FIN 1964    0
2614       108                   Germany, West    . 1964    0
2615       109                   Germany, East    . 1964    0
2616       110                          Greece  GRC 1964    0
2617       111                         Hungary  HUN 1964    0
2618       112                         Iceland  ISL 1964    0
2619       113                         Ireland  IRL 1964    0
2620       114                           Italy  ITA 1964    0
2621       115                      Luxembourg  LUX 1964    0
2622       116                           Malta  MLT 1964    0
2623       117                     Netherlands  NLD 1964    0
2624       118                          Norway  NOR 1964    1
2625       119                          Poland  POL 1964    0
2626       120                        Portugal  PRT 1964    0
2627       121                         Romania  ROM 1964    0
2628       122                           Spain  ESP 1964    0
2629       123                          Sweden  SWE 1964    0
2630       124                     Switzerland  CHE 1964    0
2631       125                          Turkey  TUR 1964    0
2632       128                      Yugoslavia    . 1964    0
2633       129                       Australia  AUS 1964    0
2634       130                            Fiji  FJI 1964    .
2635       131                     New Zealand  NZL 1964    0
2636       132                Papua New Guinea  PNG 1964    .
2637       133                 Solomon Islands  SLB 1964    .
2638       134                         Vanuatu  VUT 1964    .
2639       135                   Western Samoa  WSM 1964    0
2640       136                         Bahrain  BHR 1964    .
2641       137                          Kuwait  KWT 1964    0
2642       138                            Oman  OMN 1964    0
2643       139                           Qatar  QAT 1964    .
2644       140                    Saudi Arabia  SAU 1964    0
2645       141            United Arab Emirates  ARE 1964    .
2646       142                     Afghanistan  AFG 1964    0
2647       143                         Albania  ALB 1964    0
2648       144                         Antigua  ATG 1964    .
2649       145                         Armenia  ARM 1964    .
2650       146                           Nauru    . 1964    .
2651       147                      Azerbaijan  AZE 1964    .
2652       148                          Bhutan  BTN 1964    .
2653       149                         Belarus  BLR 1964    .
2654       150              Bosnia-Herzegovina  BIH 1964    .
2655       151                          Brunei  BRN 1964    .
2656       152                        Cambodia  KHM 1964    0
2657       153                         Croatia  HRV 1964    .
2658       154                            Cuba  CUB 1964    0
2659       155                  Czech Republic  CZE 1964    .
2660       156                 Slovak Republic  SVK 1964    .
2661       157                        Dominica  DMA 1964    .
2662       158               Equatorial Guinea  GNQ 1964    .
2663       159                         Estonia  EST 1964    .
2664       160                         Eritrea  ERI 1964    .
2665       161                         Georgia  GEO 1964    .
2666       162                      Kazakhstan  KAZ 1964    .
2667       163                        Kiribati  KIR 1964    .
2668       164        Korea, North (Dem. Rep.)  PRK 1964    0
2669       165                      Kyrgyzstan  KGZ 1964    .
2670       166                          Latvia  LVA 1964    .
2671       167                         Lebanon  LBN 1964    0
2672       168                       Lithuania  LTU 1964    .
2673       169                       Macedonia  MKD 1964    .
2674       170                 Maldive Islands  MDV 1964    .
2675       171                         Moldova  MDA 1964    .
2676       172                         Namibia  NAM 1964    .
2677       174                       St. Lucia  LCA 1964    .
2678       175           Sao Tome and Principe  STP 1964    .
2679       176                        Slovenia  SVN 1964    .
2680       177                      Somaliland    . 1964    .
2681       178               Yemen PDR (South)    . 1964    .
2682       179             St. Kitts and Nevis  KNA 1964    .
2683       180                     St. Vincent  VCT 1964    .
2684       181                      Tajikistan  TJK 1964    .
2685       182                    Turkmenistan  TKM 1964    .
2686       183                         Ukraine  UKR 1964    .
2687       184                           Tonga  TON 1964    .
2688       185                      Uzbekistan  UZB 1964    .
2689       186                         Vietnam  VNM 1964    .
2690       187                          Cyprus  CYP 1964    0
2691       188                    Greek Cyprus    . 1964    .
2692       189 Micronesia, Federated States of  FSM 1964    .
2693       190               Republic of Yemen  YEM 1964    .
2694       191                         Germany  DEU 1964    .
2695       192                     Yugoslavia2  YUG 1964    .
2696       193                           Libya  LBY 1964    0
2697       194                       Ethiopia2  ETH 1964    .
2698       195                         Andorra  ADO 1964    .
2699       196                   Liechtenstein  LIE 1964    .
2700       197                Marshall Islands  MHL 1964    .
2701       198                           Palau  PLW 1964    .
2702       199                      San Marino  SMR 1964    .
2703         1                         Algeria  DZA 1965    0
2704         2                          Angola  AGO 1965    .
2705         3                           Benin  BEN 1965    0
2706         4                        Botswana  BWA 1965    .
2707         5                    Burkina Faso  BFA 1965    0
2708         6                         Burundi  BDI 1965    0
2709         7                        Cameroon  CMR 1965    0
2710         8                      Cape Verde  CPV 1965    .
2711         9        Central African Republic  CAF 1965    0
2712        10                            Chad  TCD 1965    0
2713        11                         Comoros  COM 1965    .
2714        12                           Congo  COG 1965    0
2715        13                        Djibouti  DJI 1965    .
2716        14                Egypt, Arab Rep.  EGY 1965    0
2717        15                        Ethiopia    . 1965    0
2718        16                           Gabon  GAB 1965    0
2719        17                     Gambia, The  GMB 1965    0
2720        18                           Ghana  GHA 1965    0
2721        19                          Guinea  GIN 1965    0
2722        20                   Guinea-Bissau  GNB 1965    .
2723        21                   Cote d'Ivoire  CIV 1965    1
2724        22                           Kenya  KEN 1965    0
2725        23                         Lesotho  LSO 1965    .
2726        24                         Liberia  LBR 1965    0
2727        25                      Madagascar  MDG 1965    0
2728        26                          Malawi  MWI 1965    0
2729        27                            Mali  MLI 1965    0
2730        28                      Mauritania  MRT 1965    0
2731        29                       Mauritius  MUS 1965    .
2732        30                         Morocco  MAR 1965    0
2733        31                      Mozambique  MOZ 1965    .
2734        32                           Niger  NER 1965    0
2735        33                         Nigeria  NGA 1965    0
2736        34                          Rwanda  RWA 1965    0
2737        35                         Senegal  SEN 1965    0
2738        36                      Seychelles  SYC 1965    .
2739        37                    Sierra Leone  SLE 1965    0
2740        38                         Somalia  SOM 1965    0
2741        39                    South Africa  ZAF 1965    0
2742        40                           Sudan  SDN 1965    0
2743        41                       Swaziland  SWZ 1965    .
2744        42                        Tanzania  TZA 1965    0
2745        43                            Togo  TGO 1965    0
2746        44                         Tunisia  TUN 1965    0
2747        45                          Uganda  UGA 1965    0
2748        46                           Zaire  ZAR 1965    0
2749        47                          Zambia  ZMB 1965    0
2750        48                        Zimbabwe  ZWE 1965    0
2751        49                    Bahamas, The  BHS 1965    .
2752        50                        Barbados  BRB 1965    .
2753        51                          Belize  BLZ 1965    .
2754        52                          Canada  CAN 1965    0
2755        53                      Costa Rica  CRI 1965    0
2756        54              Dominican Republic  DOM 1965    0
2757        55                     El Salvador  SLV 1965    0
2758        56                         Grenada  GRD 1965    .
2759        57                       Guatemala  GTM 1965    0
2760        58                           Haiti  HTI 1965    0
2761        59                        Honduras  HND 1965    0
2762        60                         Jamaica  JAM 1965    0
2763        61                          Mexico  MEX 1965    0
2764        62                       Nicaragua  NIC 1965    0
2765        63                          Panama  PAN 1965    0
2766        64             Trinidad and Tobago  TTO 1965    0
2767        66                       Argentina  ARG 1965    0
2768        67                         Bolivia  BOL 1965    1
2769        68                          Brazil  BRA 1965    0
2770        69                           Chile  CHL 1965    0
2771        70                        Colombia  COL 1965    0
2772        71                         Ecuador  ECU 1965    0
2773        72                          Guyana  GUY 1965    .
2774        73                        Paraguay  PRY 1965    0
2775        74                            Peru  PER 1965    0
2776        75                        Suriname  SUR 1965    .
2777        76                         Uruguay  URY 1965    1
2778        77                       Venezuela  VEN 1965    0
2779        78                      Bangladesh  BGD 1965    .
2780        80                           India  IND 1965    0
2781        81                       Indonesia  IDN 1965    0
2782        82              Iran, Islamic Rep.  IRN 1965    0
2783        83                            Iraq  IRQ 1965    0
2784        84                          Israel  ISR 1965    0
2785        85                           Japan  JPN 1965    0
2786        86                          Jordan  JOR 1965    1
2787        87             Korea, South (Rep.)  KOR 1965    0
2788        88                        Laos PDR  LAO 1965    0
2789        89                        Malaysia  MYS 1965    1
2790        90                        Mongolia  MNG 1965    0
2791        91                         Myanmar  MMR 1965    0
2792        92                           Nepal  NPL 1965    0
2793        93                        Pakistan  PAK 1965    0
2794        94                     Philippines  PHL 1965    0
2795        95                       Singapore  SGP 1965    0
2796        96                       Sri Lanka  LKA 1965    0
2797        97            Syrian Arab Republic  SYR 1965    0
2798        98                          Taiwan    . 1965    0
2799        99                        Thailand  THA 1965    0
2800       100             Yemen Arab Republic    . 1965    .
2801       101                         Austria  AUT 1965    0
2802       102                         Belgium  BEL 1965    0
2803       103                        Bulgaria  BGR 1965    0
2804       104                  Czechoslovakia    . 1965    0
2805       105                         Denmark  DNK 1965    0
2806       106                         Finland  FIN 1965    0
2807       108                   Germany, West    . 1965    0
2808       109                   Germany, East    . 1965    0
2809       110                          Greece  GRC 1965    0
2810       111                         Hungary  HUN 1965    0
2811       112                         Iceland  ISL 1965    0
2812       113                         Ireland  IRL 1965    0
2813       114                           Italy  ITA 1965    0
2814       115                      Luxembourg  LUX 1965    0
2815       116                           Malta  MLT 1965    0
2816       117                     Netherlands  NLD 1965    1
2817       118                          Norway  NOR 1965    0
2818       119                          Poland  POL 1965    0
2819       120                        Portugal  PRT 1965    0
2820       121                         Romania  ROM 1965    0
2821       122                           Spain  ESP 1965    0
2822       123                          Sweden  SWE 1965    0
2823       124                     Switzerland  CHE 1965    0
2824       125                          Turkey  TUR 1965    0
2825       128                      Yugoslavia    . 1965    0
2826       129                       Australia  AUS 1965    0
2827       130                            Fiji  FJI 1965    .
2828       131                     New Zealand  NZL 1965    0
2829       132                Papua New Guinea  PNG 1965    .
2830       133                 Solomon Islands  SLB 1965    .
2831       134                         Vanuatu  VUT 1965    .
2832       135                   Western Samoa  WSM 1965    0
2833       136                         Bahrain  BHR 1965    .
2834       137                          Kuwait  KWT 1965    0
2835       138                            Oman  OMN 1965    0
2836       139                           Qatar  QAT 1965    .
2837       140                    Saudi Arabia  SAU 1965    0
2838       141            United Arab Emirates  ARE 1965    .
2839       142                     Afghanistan  AFG 1965    0
2840       143                         Albania  ALB 1965    0
2841       144                         Antigua  ATG 1965    .
2842       145                         Armenia  ARM 1965    .
2843       146                           Nauru    . 1965    .
2844       147                      Azerbaijan  AZE 1965    .
2845       148                          Bhutan  BTN 1965    .
2846       149                         Belarus  BLR 1965    .
2847       150              Bosnia-Herzegovina  BIH 1965    .
2848       151                          Brunei  BRN 1965    .
2849       152                        Cambodia  KHM 1965    0
2850       153                         Croatia  HRV 1965    .
2851       154                            Cuba  CUB 1965    0
2852       155                  Czech Republic  CZE 1965    .
2853       156                 Slovak Republic  SVK 1965    .
2854       157                        Dominica  DMA 1965    .
2855       158               Equatorial Guinea  GNQ 1965    .
2856       159                         Estonia  EST 1965    .
2857       160                         Eritrea  ERI 1965    .
2858       161                         Georgia  GEO 1965    .
2859       162                      Kazakhstan  KAZ 1965    .
2860       163                        Kiribati  KIR 1965    .
2861       164        Korea, North (Dem. Rep.)  PRK 1965    0
2862       165                      Kyrgyzstan  KGZ 1965    .
2863       166                          Latvia  LVA 1965    .
2864       167                         Lebanon  LBN 1965    0
2865       168                       Lithuania  LTU 1965    .
2866       169                       Macedonia  MKD 1965    .
2867       170                 Maldive Islands  MDV 1965    0
2868       171                         Moldova  MDA 1965    .
2869       172                         Namibia  NAM 1965    .
2870       174                       St. Lucia  LCA 1965    .
2871       175           Sao Tome and Principe  STP 1965    .
2872       176                        Slovenia  SVN 1965    .
2873       177                      Somaliland    . 1965    .
2874       178               Yemen PDR (South)    . 1965    .
2875       179             St. Kitts and Nevis  KNA 1965    .
2876       180                     St. Vincent  VCT 1965    .
2877       181                      Tajikistan  TJK 1965    .
2878       182                    Turkmenistan  TKM 1965    .
2879       183                         Ukraine  UKR 1965    .
2880       184                           Tonga  TON 1965    .
2881       185                      Uzbekistan  UZB 1965    .
2882       186                         Vietnam  VNM 1965    .
2883       187                          Cyprus  CYP 1965    0
2884       188                    Greek Cyprus    . 1965    .
2885       189 Micronesia, Federated States of  FSM 1965    .
2886       190               Republic of Yemen  YEM 1965    .
2887       191                         Germany  DEU 1965    .
2888       192                     Yugoslavia2  YUG 1965    .
2889       193                           Libya  LBY 1965    0
2890       194                       Ethiopia2  ETH 1965    .
2891       195                         Andorra  ADO 1965    .
2892       196                   Liechtenstein  LIE 1965    .
2893       197                Marshall Islands  MHL 1965    .
2894       198                           Palau  PLW 1965    .
2895       199                      San Marino  SMR 1965    .
2896         1                         Algeria  DZA 1966    0
2897         2                          Angola  AGO 1966    .
2898         3                           Benin  BEN 1966    0
2899         4                        Botswana  BWA 1966    0
2900         5                    Burkina Faso  BFA 1966    0
2901         6                         Burundi  BDI 1966    0
2902         7                        Cameroon  CMR 1966    0
2903         8                      Cape Verde  CPV 1966    .
2904         9        Central African Republic  CAF 1966    0
2905        10                            Chad  TCD 1966    0
2906        11                         Comoros  COM 1966    .
2907        12                           Congo  COG 1966    0
2908        13                        Djibouti  DJI 1966    .
2909        14                Egypt, Arab Rep.  EGY 1966    0
2910        15                        Ethiopia    . 1966    0
2911        16                           Gabon  GAB 1966    0
2912        17                     Gambia, The  GMB 1966    0
2913        18                           Ghana  GHA 1966    0
2914        19                          Guinea  GIN 1966    0
2915        20                   Guinea-Bissau  GNB 1966    .
2916        21                   Cote d'Ivoire  CIV 1966    0
2917        22                           Kenya  KEN 1966    0
2918        23                         Lesotho  LSO 1966    0
2919        24                         Liberia  LBR 1966    0
2920        25                      Madagascar  MDG 1966    0
2921        26                          Malawi  MWI 1966    0
2922        27                            Mali  MLI 1966    1
2923        28                      Mauritania  MRT 1966    0
2924        29                       Mauritius  MUS 1966    .
2925        30                         Morocco  MAR 1966    0
2926        31                      Mozambique  MOZ 1966    .
2927        32                           Niger  NER 1966    0
2928        33                         Nigeria  NGA 1966    1
2929        34                          Rwanda  RWA 1966    0
2930        35                         Senegal  SEN 1966    0
2931        36                      Seychelles  SYC 1966    .
2932        37                    Sierra Leone  SLE 1966    0
2933        38                         Somalia  SOM 1966    0
2934        39                    South Africa  ZAF 1966    0
2935        40                           Sudan  SDN 1966    0
2936        41                       Swaziland  SWZ 1966    .
2937        42                        Tanzania  TZA 1966    0
2938        43                            Togo  TGO 1966    0
2939        44                         Tunisia  TUN 1966    0
2940        45                          Uganda  UGA 1966    1
2941        46                           Zaire  ZAR 1966    0
2942        47                          Zambia  ZMB 1966    0
2943        48                        Zimbabwe  ZWE 1966    0
2944        49                    Bahamas, The  BHS 1966    .
2945        50                        Barbados  BRB 1966    0
2946        51                          Belize  BLZ 1966    .
2947        52                          Canada  CAN 1966    0
2948        53                      Costa Rica  CRI 1966    0
2949        54              Dominican Republic  DOM 1966    0
2950        55                     El Salvador  SLV 1966    0
2951        56                         Grenada  GRD 1966    .
2952        57                       Guatemala  GTM 1966    0
2953        58                           Haiti  HTI 1966    0
2954        59                        Honduras  HND 1966    0
2955        60                         Jamaica  JAM 1966    0
2956        61                          Mexico  MEX 1966    0
2957        62                       Nicaragua  NIC 1966    0
2958        63                          Panama  PAN 1966    0
2959        64             Trinidad and Tobago  TTO 1966    0
2960        66                       Argentina  ARG 1966    1
2961        67                         Bolivia  BOL 1966    0
2962        68                          Brazil  BRA 1966    0
2963        69                           Chile  CHL 1966    0
2964        70                        Colombia  COL 1966    0
2965        71                         Ecuador  ECU 1966    0
2966        72                          Guyana  GUY 1966    0
2967        73                        Paraguay  PRY 1966    0
2968        74                            Peru  PER 1966    0
2969        75                        Suriname  SUR 1966    .
2970        76                         Uruguay  URY 1966    1
2971        77                       Venezuela  VEN 1966    0
2972        78                      Bangladesh  BGD 1966    .
2973        80                           India  IND 1966    0
2974        81                       Indonesia  IDN 1966    0
2975        82              Iran, Islamic Rep.  IRN 1966    0
2976        83                            Iraq  IRQ 1966    0
2977        84                          Israel  ISR 1966    0
2978        85                           Japan  JPN 1966    1
2979        86                          Jordan  JOR 1966    1
2980        87             Korea, South (Rep.)  KOR 1966    0
2981        88                        Laos PDR  LAO 1966    0
2982        89                        Malaysia  MYS 1966    0
2983        90                        Mongolia  MNG 1966    0
2984        91                         Myanmar  MMR 1966    0
2985        92                           Nepal  NPL 1966    0
2986        93                        Pakistan  PAK 1966    0
2987        94                     Philippines  PHL 1966    0
2988        95                       Singapore  SGP 1966    0
2989        96                       Sri Lanka  LKA 1966    0
2990        97            Syrian Arab Republic  SYR 1966    0
2991        98                          Taiwan    . 1966    0
2992        99                        Thailand  THA 1966    0
2993       100             Yemen Arab Republic    . 1966    .
2994       101                         Austria  AUT 1966    0
2995       102                         Belgium  BEL 1966    0
2996       103                        Bulgaria  BGR 1966    1
2997       104                  Czechoslovakia    . 1966    0
2998       105                         Denmark  DNK 1966    0
2999       106                         Finland  FIN 1966    0
3000       108                   Germany, West    . 1966    0
3001       109                   Germany, East    . 1966    0
3002       110                          Greece  GRC 1966    0
3003       111                         Hungary  HUN 1966    0
3004       112                         Iceland  ISL 1966    0
3005       113                         Ireland  IRL 1966    0
3006       114                           Italy  ITA 1966    0
3007       115                      Luxembourg  LUX 1966    0
3008       116                           Malta  MLT 1966    0
3009       117                     Netherlands  NLD 1966    1
3010       118                          Norway  NOR 1966    0
3011       119                          Poland  POL 1966    0
3012       120                        Portugal  PRT 1966    0
3013       121                         Romania  ROM 1966    0
3014       122                           Spain  ESP 1966    0
3015       123                          Sweden  SWE 1966    0
3016       124                     Switzerland  CHE 1966    0
3017       125                          Turkey  TUR 1966    0
3018       128                      Yugoslavia    . 1966    0
3019       129                       Australia  AUS 1966    0
3020       130                            Fiji  FJI 1966    .
3021       131                     New Zealand  NZL 1966    1
3022       132                Papua New Guinea  PNG 1966    .
3023       133                 Solomon Islands  SLB 1966    .
3024       134                         Vanuatu  VUT 1966    .
3025       135                   Western Samoa  WSM 1966    0
3026       136                         Bahrain  BHR 1966    .
3027       137                          Kuwait  KWT 1966    0
3028       138                            Oman  OMN 1966    0
3029       139                           Qatar  QAT 1966    .
3030       140                    Saudi Arabia  SAU 1966    0
3031       141            United Arab Emirates  ARE 1966    .
3032       142                     Afghanistan  AFG 1966    0
3033       143                         Albania  ALB 1966    0
3034       144                         Antigua  ATG 1966    .
3035       145                         Armenia  ARM 1966    .
3036       146                           Nauru    . 1966    .
3037       147                      Azerbaijan  AZE 1966    .
3038       148                          Bhutan  BTN 1966    .
3039       149                         Belarus  BLR 1966    .
3040       150              Bosnia-Herzegovina  BIH 1966    .
3041       151                          Brunei  BRN 1966    .
3042       152                        Cambodia  KHM 1966    0
3043       153                         Croatia  HRV 1966    .
3044       154                            Cuba  CUB 1966    0
3045       155                  Czech Republic  CZE 1966    .
3046       156                 Slovak Republic  SVK 1966    .
3047       157                        Dominica  DMA 1966    .
3048       158               Equatorial Guinea  GNQ 1966    .
3049       159                         Estonia  EST 1966    .
3050       160                         Eritrea  ERI 1966    .
3051       161                         Georgia  GEO 1966    .
3052       162                      Kazakhstan  KAZ 1966    .
3053       163                        Kiribati  KIR 1966    .
3054       164        Korea, North (Dem. Rep.)  PRK 1966    0
3055       165                      Kyrgyzstan  KGZ 1966    .
3056       166                          Latvia  LVA 1966    .
3057       167                         Lebanon  LBN 1966    0
3058       168                       Lithuania  LTU 1966    .
3059       169                       Macedonia  MKD 1966    .
3060       170                 Maldive Islands  MDV 1966    0
3061       171                         Moldova  MDA 1966    .
3062       172                         Namibia  NAM 1966    .
3063       174                       St. Lucia  LCA 1966    .
3064       175           Sao Tome and Principe  STP 1966    .
3065       176                        Slovenia  SVN 1966    .
3066       177                      Somaliland    . 1966    .
3067       178               Yemen PDR (South)    . 1966    .
3068       179             St. Kitts and Nevis  KNA 1966    .
3069       180                     St. Vincent  VCT 1966    .
3070       181                      Tajikistan  TJK 1966    .
3071       182                    Turkmenistan  TKM 1966    .
3072       183                         Ukraine  UKR 1966    .
3073       184                           Tonga  TON 1966    .
3074       185                      Uzbekistan  UZB 1966    .
3075       186                         Vietnam  VNM 1966    .
3076       187                          Cyprus  CYP 1966    0
3077       188                    Greek Cyprus    . 1966    .
3078       189 Micronesia, Federated States of  FSM 1966    .
3079       190               Republic of Yemen  YEM 1966    .
3080       191                         Germany  DEU 1966    .
3081       192                     Yugoslavia2  YUG 1966    .
3082       193                           Libya  LBY 1966    0
3083       194                       Ethiopia2  ETH 1966    .
3084       195                         Andorra  ADO 1966    .
3085       196                   Liechtenstein  LIE 1966    .
3086       197                Marshall Islands  MHL 1966    .
3087       198                           Palau  PLW 1966    .
3088       199                      San Marino  SMR 1966    .
3089         1                         Algeria  DZA 1967    0
3090         2                          Angola  AGO 1967    .
3091         3                           Benin  BEN 1967    0
3092         4                        Botswana  BWA 1967    0
3093         5                    Burkina Faso  BFA 1967    0
3094         6                         Burundi  BDI 1967    0
3095         7                        Cameroon  CMR 1967    0
3096         8                      Cape Verde  CPV 1967    .
3097         9        Central African Republic  CAF 1967    0
3098        10                            Chad  TCD 1967    0
3099        11                         Comoros  COM 1967    .
3100        12                           Congo  COG 1967    0
3101        13                        Djibouti  DJI 1967    .
3102        14                Egypt, Arab Rep.  EGY 1967    0
3103        15                        Ethiopia    . 1967    1
3104        16                           Gabon  GAB 1967    0
3105        17                     Gambia, The  GMB 1967    0
3106        18                           Ghana  GHA 1967    0
3107        19                          Guinea  GIN 1967    0
3108        20                   Guinea-Bissau  GNB 1967    .
3109        21                   Cote d'Ivoire  CIV 1967    0
3110        22                           Kenya  KEN 1967    0
3111        23                         Lesotho  LSO 1967    0
3112        24                         Liberia  LBR 1967    0
3113        25                      Madagascar  MDG 1967    0
3114        26                          Malawi  MWI 1967    0
3115        27                            Mali  MLI 1967    1
3116        28                      Mauritania  MRT 1967    0
3117        29                       Mauritius  MUS 1967    .
3118        30                         Morocco  MAR 1967    0
3119        31                      Mozambique  MOZ 1967    .
3120        32                           Niger  NER 1967    0
3121        33                         Nigeria  NGA 1967    1
3122        34                          Rwanda  RWA 1967    0
3123        35                         Senegal  SEN 1967    0
3124        36                      Seychelles  SYC 1967    .
3125        37                    Sierra Leone  SLE 1967    0
3126        38                         Somalia  SOM 1967    0
3127        39                    South Africa  ZAF 1967    0
3128        40                           Sudan  SDN 1967    0
3129        41                       Swaziland  SWZ 1967    .
3130        42                        Tanzania  TZA 1967    0
3131        43                            Togo  TGO 1967    0
3132        44                         Tunisia  TUN 1967    0
3133        45                          Uganda  UGA 1967    0
3134        46                           Zaire  ZAR 1967    0
3135        47                          Zambia  ZMB 1967    0
3136        48                        Zimbabwe  ZWE 1967    0
3137        49                    Bahamas, The  BHS 1967    .
3138        50                        Barbados  BRB 1967    0
3139        51                          Belize  BLZ 1967    .
3140        52                          Canada  CAN 1967    1
3141        53                      Costa Rica  CRI 1967    0
3142        54              Dominican Republic  DOM 1967    0
3143        55                     El Salvador  SLV 1967    0
3144        56                         Grenada  GRD 1967    .
3145        57                       Guatemala  GTM 1967    0
3146        58                           Haiti  HTI 1967    0
3147        59                        Honduras  HND 1967    0
3148        60                         Jamaica  JAM 1967    0
3149        61                          Mexico  MEX 1967    0
3150        62                       Nicaragua  NIC 1967    0
3151        63                          Panama  PAN 1967    0
3152        64             Trinidad and Tobago  TTO 1967    0
3153        66                       Argentina  ARG 1967    1
3154        67                         Bolivia  BOL 1967    0
3155        68                          Brazil  BRA 1967    1
3156        69                           Chile  CHL 1967    0
3157        70                        Colombia  COL 1967    0
3158        71                         Ecuador  ECU 1967    0
3159        72                          Guyana  GUY 1967    0
3160        73                        Paraguay  PRY 1967    0
3161        74                            Peru  PER 1967    0
3162        75                        Suriname  SUR 1967    .
3163        76                         Uruguay  URY 1967    0
3164        77                       Venezuela  VEN 1967    0
3165        78                      Bangladesh  BGD 1967    .
3166        80                           India  IND 1967    1
3167        81                       Indonesia  IDN 1967    0
3168        82              Iran, Islamic Rep.  IRN 1967    0
3169        83                            Iraq  IRQ 1967    0
3170        84                          Israel  ISR 1967    0
3171        85                           Japan  JPN 1967    1
3172        86                          Jordan  JOR 1967    0
3173        87             Korea, South (Rep.)  KOR 1967    0
3174        88                        Laos PDR  LAO 1967    0
3175        89                        Malaysia  MYS 1967    0
3176        90                        Mongolia  MNG 1967    0
3177        91                         Myanmar  MMR 1967    0
3178        92                           Nepal  NPL 1967    0
3179        93                        Pakistan  PAK 1967    0
3180        94                     Philippines  PHL 1967    0
3181        95                       Singapore  SGP 1967    0
3182        96                       Sri Lanka  LKA 1967    0
3183        97            Syrian Arab Republic  SYR 1967    0
3184        98                          Taiwan    . 1967    0
3185        99                        Thailand  THA 1967    0
3186       100             Yemen Arab Republic    . 1967    0
3187       101                         Austria  AUT 1967    0
3188       102                         Belgium  BEL 1967    0
3189       103                        Bulgaria  BGR 1967    1
3190       104                  Czechoslovakia    . 1967    0
3191       105                         Denmark  DNK 1967    1
3192       106                         Finland  FIN 1967    0
3193       108                   Germany, West    . 1967    0
3194       109                   Germany, East    . 1967    0
3195       110                          Greece  GRC 1967    0
3196       111                         Hungary  HUN 1967    0
3197       112                         Iceland  ISL 1967    0
3198       113                         Ireland  IRL 1967    0
3199       114                           Italy  ITA 1967    0
3200       115                      Luxembourg  LUX 1967    0
3201       116                           Malta  MLT 1967    0
3202       117                     Netherlands  NLD 1967    0
3203       118                          Norway  NOR 1967    0
3204       119                          Poland  POL 1967    0
3205       120                        Portugal  PRT 1967    0
3206       121                         Romania  ROM 1967    0
3207       122                           Spain  ESP 1967    0
3208       123                          Sweden  SWE 1967    0
3209       124                     Switzerland  CHE 1967    0
3210       125                          Turkey  TUR 1967    0
3211       128                      Yugoslavia    . 1967    0
3212       129                       Australia  AUS 1967    0
3213       130                            Fiji  FJI 1967    .
3214       131                     New Zealand  NZL 1967    0
3215       132                Papua New Guinea  PNG 1967    .
3216       133                 Solomon Islands  SLB 1967    .
3217       134                         Vanuatu  VUT 1967    .
3218       135                   Western Samoa  WSM 1967    0
3219       136                         Bahrain  BHR 1967    .
3220       137                          Kuwait  KWT 1967    0
3221       138                            Oman  OMN 1967    0
3222       139                           Qatar  QAT 1967    .
3223       140                    Saudi Arabia  SAU 1967    0
3224       141            United Arab Emirates  ARE 1967    .
3225       142                     Afghanistan  AFG 1967    0
3226       143                         Albania  ALB 1967    0
3227       144                         Antigua  ATG 1967    .
3228       145                         Armenia  ARM 1967    .
3229       146                           Nauru    . 1967    .
3230       147                      Azerbaijan  AZE 1967    .
3231       148                          Bhutan  BTN 1967    .
3232       149                         Belarus  BLR 1967    .
3233       150              Bosnia-Herzegovina  BIH 1967    .
3234       151                          Brunei  BRN 1967    .
3235       152                        Cambodia  KHM 1967    0
3236       153                         Croatia  HRV 1967    .
3237       154                            Cuba  CUB 1967    0
3238       155                  Czech Republic  CZE 1967    .
3239       156                 Slovak Republic  SVK 1967    .
3240       157                        Dominica  DMA 1967    .
3241       158               Equatorial Guinea  GNQ 1967    .
3242       159                         Estonia  EST 1967    .
3243       160                         Eritrea  ERI 1967    .
3244       161                         Georgia  GEO 1967    .
3245       162                      Kazakhstan  KAZ 1967    .
3246       163                        Kiribati  KIR 1967    .
3247       164        Korea, North (Dem. Rep.)  PRK 1967    0
3248       165                      Kyrgyzstan  KGZ 1967    .
3249       166                          Latvia  LVA 1967    .
3250       167                         Lebanon  LBN 1967    0
3251       168                       Lithuania  LTU 1967    .
3252       169                       Macedonia  MKD 1967    .
3253       170                 Maldive Islands  MDV 1967    0
3254       171                         Moldova  MDA 1967    .
3255       172                         Namibia  NAM 1967    .
3256       174                       St. Lucia  LCA 1967    .
3257       175           Sao Tome and Principe  STP 1967    .
3258       176                        Slovenia  SVN 1967    .
3259       177                      Somaliland    . 1967    .
3260       178               Yemen PDR (South)    . 1967    0
3261       179             St. Kitts and Nevis  KNA 1967    .
3262       180                     St. Vincent  VCT 1967    .
3263       181                      Tajikistan  TJK 1967    .
3264       182                    Turkmenistan  TKM 1967    .
3265       183                         Ukraine  UKR 1967    .
3266       184                           Tonga  TON 1967    .
3267       185                      Uzbekistan  UZB 1967    .
3268       186                         Vietnam  VNM 1967    .
3269       187                          Cyprus  CYP 1967    0
3270       188                    Greek Cyprus    . 1967    .
3271       189 Micronesia, Federated States of  FSM 1967    .
3272       190               Republic of Yemen  YEM 1967    .
3273       191                         Germany  DEU 1967    .
3274       192                     Yugoslavia2  YUG 1967    .
3275       193                           Libya  LBY 1967    0
3276       194                       Ethiopia2  ETH 1967    .
3277       195                         Andorra  ADO 1967    .
3278       196                   Liechtenstein  LIE 1967    .
3279       197                Marshall Islands  MHL 1967    .
3280       198                           Palau  PLW 1967    .
3281       199                      San Marino  SMR 1967    .
3282         1                         Algeria  DZA 1968    1
3283         2                          Angola  AGO 1968    .
3284         3                           Benin  BEN 1968    0
3285         4                        Botswana  BWA 1968    0
3286         5                    Burkina Faso  BFA 1968    0
3287         6                         Burundi  BDI 1968    0
3288         7                        Cameroon  CMR 1968    0
3289         8                      Cape Verde  CPV 1968    .
3290         9        Central African Republic  CAF 1968    0
3291        10                            Chad  TCD 1968    0
3292        11                         Comoros  COM 1968    .
3293        12                           Congo  COG 1968    0
3294        13                        Djibouti  DJI 1968    .
3295        14                Egypt, Arab Rep.  EGY 1968    0
3296        15                        Ethiopia    . 1968    1
3297        16                           Gabon  GAB 1968    0
3298        17                     Gambia, The  GMB 1968    0
3299        18                           Ghana  GHA 1968    0
3300        19                          Guinea  GIN 1968    0
3301        20                   Guinea-Bissau  GNB 1968    .
3302        21                   Cote d'Ivoire  CIV 1968    0
3303        22                           Kenya  KEN 1968    0
3304        23                         Lesotho  LSO 1968    0
3305        24                         Liberia  LBR 1968    0
3306        25                      Madagascar  MDG 1968    0
3307        26                          Malawi  MWI 1968    0
3308        27                            Mali  MLI 1968    0
3309        28                      Mauritania  MRT 1968    0
3310        29                       Mauritius  MUS 1968    0
3311        30                         Morocco  MAR 1968    0
3312        31                      Mozambique  MOZ 1968    .
3313        32                           Niger  NER 1968    0
3314        33                         Nigeria  NGA 1968    0
3315        34                          Rwanda  RWA 1968    0
3316        35                         Senegal  SEN 1968    1
3317        36                      Seychelles  SYC 1968    .
3318        37                    Sierra Leone  SLE 1968    0
3319        38                         Somalia  SOM 1968    0
3320        39                    South Africa  ZAF 1968    0
3321        40                           Sudan  SDN 1968    0
3322        41                       Swaziland  SWZ 1968    0
3323        42                        Tanzania  TZA 1968    0
3324        43                            Togo  TGO 1968    0
3325        44                         Tunisia  TUN 1968    0
3326        45                          Uganda  UGA 1968    0
3327        46                           Zaire  ZAR 1968    0
3328        47                          Zambia  ZMB 1968    0
3329        48                        Zimbabwe  ZWE 1968    0
3330        49                    Bahamas, The  BHS 1968    .
3331        50                        Barbados  BRB 1968    0
3332        51                          Belize  BLZ 1968    .
3333        52                          Canada  CAN 1968    1
3334        53                      Costa Rica  CRI 1968    0
3335        54              Dominican Republic  DOM 1968    0
3336        55                     El Salvador  SLV 1968    0
3337        56                         Grenada  GRD 1968    .
3338        57                       Guatemala  GTM 1968    0
3339        58                           Haiti  HTI 1968    0
3340        59                        Honduras  HND 1968    0
3341        60                         Jamaica  JAM 1968    0
3342        61                          Mexico  MEX 1968    0
3343        62                       Nicaragua  NIC 1968    0
3344        63                          Panama  PAN 1968    0
3345        64             Trinidad and Tobago  TTO 1968    0
3346        66                       Argentina  ARG 1968    0
3347        67                         Bolivia  BOL 1968    0
3348        68                          Brazil  BRA 1968    1
3349        69                           Chile  CHL 1968    0
3350        70                        Colombia  COL 1968    0
3351        71                         Ecuador  ECU 1968    0
3352        72                          Guyana  GUY 1968    0
3353        73                        Paraguay  PRY 1968    1
3354        74                            Peru  PER 1968    0
3355        75                        Suriname  SUR 1968    .
3356        76                         Uruguay  URY 1968    0
3357        77                       Venezuela  VEN 1968    0
3358        78                      Bangladesh  BGD 1968    .
3359        80                           India  IND 1968    1
3360        81                       Indonesia  IDN 1968    0
3361        82              Iran, Islamic Rep.  IRN 1968    0
3362        83                            Iraq  IRQ 1968    0
3363        84                          Israel  ISR 1968    0
3364        85                           Japan  JPN 1968    0
3365        86                          Jordan  JOR 1968    0
3366        87             Korea, South (Rep.)  KOR 1968    0
3367        88                        Laos PDR  LAO 1968    0
3368        89                        Malaysia  MYS 1968    0
3369        90                        Mongolia  MNG 1968    0
3370        91                         Myanmar  MMR 1968    0
3371        92                           Nepal  NPL 1968    0
3372        93                        Pakistan  PAK 1968    1
3373        94                     Philippines  PHL 1968    0
3374        95                       Singapore  SGP 1968    0
3375        96                       Sri Lanka  LKA 1968    0
3376        97            Syrian Arab Republic  SYR 1968    0
3377        98                          Taiwan    . 1968    0
3378        99                        Thailand  THA 1968    0
3379       100             Yemen Arab Republic    . 1968    0
3380       101                         Austria  AUT 1968    0
3381       102                         Belgium  BEL 1968    0
3382       103                        Bulgaria  BGR 1968    0
3383       104                  Czechoslovakia    . 1968    0
3384       105                         Denmark  DNK 1968    1
3385       106                         Finland  FIN 1968    0
3386       108                   Germany, West    . 1968    0
3387       109                   Germany, East    . 1968    0
3388       110                          Greece  GRC 1968    0
3389       111                         Hungary  HUN 1968    1
3390       112                         Iceland  ISL 1968    0
3391       113                         Ireland  IRL 1968    0
3392       114                           Italy  ITA 1968    0
3393       115                      Luxembourg  LUX 1968    0
3394       116                           Malta  MLT 1968    0
3395       117                     Netherlands  NLD 1968    0
3396       118                          Norway  NOR 1968    0
3397       119                          Poland  POL 1968    0
3398       120                        Portugal  PRT 1968    0
3399       121                         Romania  ROM 1968    0
3400       122                           Spain  ESP 1968    0
3401       123                          Sweden  SWE 1968    0
3402       124                     Switzerland  CHE 1968    0
3403       125                          Turkey  TUR 1968    0
3404       128                      Yugoslavia    . 1968    0
3405       129                       Australia  AUS 1968    0
3406       130                            Fiji  FJI 1968    .
3407       131                     New Zealand  NZL 1968    0
3408       132                Papua New Guinea  PNG 1968    .
3409       133                 Solomon Islands  SLB 1968    .
3410       134                         Vanuatu  VUT 1968    .
3411       135                   Western Samoa  WSM 1968    0
3412       136                         Bahrain  BHR 1968    .
3413       137                          Kuwait  KWT 1968    0
3414       138                            Oman  OMN 1968    0
3415       139                           Qatar  QAT 1968    .
3416       140                    Saudi Arabia  SAU 1968    0
3417       141            United Arab Emirates  ARE 1968    .
3418       142                     Afghanistan  AFG 1968    0
3419       143                         Albania  ALB 1968    0
3420       144                         Antigua  ATG 1968    .
3421       145                         Armenia  ARM 1968    .
3422       146                           Nauru    . 1968    0
3423       147                      Azerbaijan  AZE 1968    .
3424       148                          Bhutan  BTN 1968    .
3425       149                         Belarus  BLR 1968    .
3426       150              Bosnia-Herzegovina  BIH 1968    .
3427       151                          Brunei  BRN 1968    .
3428       152                        Cambodia  KHM 1968    0
3429       153                         Croatia  HRV 1968    .
3430       154                            Cuba  CUB 1968    0
3431       155                  Czech Republic  CZE 1968    .
3432       156                 Slovak Republic  SVK 1968    .
3433       157                        Dominica  DMA 1968    .
3434       158               Equatorial Guinea  GNQ 1968    0
3435       159                         Estonia  EST 1968    .
3436       160                         Eritrea  ERI 1968    .
3437       161                         Georgia  GEO 1968    .
3438       162                      Kazakhstan  KAZ 1968    .
3439       163                        Kiribati  KIR 1968    .
3440       164        Korea, North (Dem. Rep.)  PRK 1968    0
3441       165                      Kyrgyzstan  KGZ 1968    .
3442       166                          Latvia  LVA 1968    .
3443       167                         Lebanon  LBN 1968    0
3444       168                       Lithuania  LTU 1968    .
3445       169                       Macedonia  MKD 1968    .
3446       170                 Maldive Islands  MDV 1968    0
3447       171                         Moldova  MDA 1968    .
3448       172                         Namibia  NAM 1968    .
3449       174                       St. Lucia  LCA 1968    .
3450       175           Sao Tome and Principe  STP 1968    .
3451       176                        Slovenia  SVN 1968    .
3452       177                      Somaliland    . 1968    .
3453       178               Yemen PDR (South)    . 1968    0
3454       179             St. Kitts and Nevis  KNA 1968    .
3455       180                     St. Vincent  VCT 1968    .
3456       181                      Tajikistan  TJK 1968    .
3457       182                    Turkmenistan  TKM 1968    .
3458       183                         Ukraine  UKR 1968    .
3459       184                           Tonga  TON 1968    .
3460       185                      Uzbekistan  UZB 1968    .
3461       186                         Vietnam  VNM 1968    .
3462       187                          Cyprus  CYP 1968    0
3463       188                    Greek Cyprus    . 1968    .
3464       189 Micronesia, Federated States of  FSM 1968    .
3465       190               Republic of Yemen  YEM 1968    .
3466       191                         Germany  DEU 1968    .
3467       192                     Yugoslavia2  YUG 1968    .
3468       193                           Libya  LBY 1968    0
3469       194                       Ethiopia2  ETH 1968    .
3470       195                         Andorra  ADO 1968    .
3471       196                   Liechtenstein  LIE 1968    .
3472       197                Marshall Islands  MHL 1968    .
3473       198                           Palau  PLW 1968    .
3474       199                      San Marino  SMR 1968    .
3475         1                         Algeria  DZA 1969    1
3476         2                          Angola  AGO 1969    .
3477         3                           Benin  BEN 1969    0
3478         4                        Botswana  BWA 1969    0
3479         5                    Burkina Faso  BFA 1969    0
3480         6                         Burundi  BDI 1969    0
3481         7                        Cameroon  CMR 1969    0
3482         8                      Cape Verde  CPV 1969    .
3483         9        Central African Republic  CAF 1969    0
3484        10                            Chad  TCD 1969    0
3485        11                         Comoros  COM 1969    .
3486        12                           Congo  COG 1969    0
3487        13                        Djibouti  DJI 1969    .
3488        14                Egypt, Arab Rep.  EGY 1969    0
3489        15                        Ethiopia    . 1969    0
3490        16                           Gabon  GAB 1969    0
3491        17                     Gambia, The  GMB 1969    0
3492        18                           Ghana  GHA 1969    0
3493        19                          Guinea  GIN 1969    0
3494        20                   Guinea-Bissau  GNB 1969    .
3495        21                   Cote d'Ivoire  CIV 1969    0
3496        22                           Kenya  KEN 1969    0
3497        23                         Lesotho  LSO 1969    0
3498        24                         Liberia  LBR 1969    0
3499        25                      Madagascar  MDG 1969    0
3500        26                          Malawi  MWI 1969    0
3501        27                            Mali  MLI 1969    0
3502        28                      Mauritania  MRT 1969    0
3503        29                       Mauritius  MUS 1969    0
3504        30                         Morocco  MAR 1969    0
3505        31                      Mozambique  MOZ 1969    .
3506        32                           Niger  NER 1969    0
3507        33                         Nigeria  NGA 1969    0
3508        34                          Rwanda  RWA 1969    0
3509        35                         Senegal  SEN 1969    1
3510        36                      Seychelles  SYC 1969    .
3511        37                    Sierra Leone  SLE 1969    0
3512        38                         Somalia  SOM 1969    0
3513        39                    South Africa  ZAF 1969    0
3514        40                           Sudan  SDN 1969    0
3515        41                       Swaziland  SWZ 1969    0
3516        42                        Tanzania  TZA 1969    0
3517        43                            Togo  TGO 1969    0
3518        44                         Tunisia  TUN 1969    0
3519        45                          Uganda  UGA 1969    0
3520        46                           Zaire  ZAR 1969    0
3521        47                          Zambia  ZMB 1969    1
3522        48                        Zimbabwe  ZWE 1969    0
3523        49                    Bahamas, The  BHS 1969    .
3524        50                        Barbados  BRB 1969    0
3525        51                          Belize  BLZ 1969    .
3526        52                          Canada  CAN 1969    0
3527        53                      Costa Rica  CRI 1969    0
3528        54              Dominican Republic  DOM 1969    0
3529        55                     El Salvador  SLV 1969    0
3530        56                         Grenada  GRD 1969    .
3531        57                       Guatemala  GTM 1969    0
3532        58                           Haiti  HTI 1969    0
3533        59                        Honduras  HND 1969    0
3534        60                         Jamaica  JAM 1969    0
3535        61                          Mexico  MEX 1969    0
3536        62                       Nicaragua  NIC 1969    0
3537        63                          Panama  PAN 1969    0
3538        64             Trinidad and Tobago  TTO 1969    0
3539        66                       Argentina  ARG 1969    0
3540        67                         Bolivia  BOL 1969    0
3541        68                          Brazil  BRA 1969    0
3542        69                           Chile  CHL 1969    0
3543        70                        Colombia  COL 1969    1
3544        71                         Ecuador  ECU 1969    0
3545        72                          Guyana  GUY 1969    0
3546        73                        Paraguay  PRY 1969    1
3547        74                            Peru  PER 1969    0
3548        75                        Suriname  SUR 1969    .
3549        76                         Uruguay  URY 1969    0
3550        77                       Venezuela  VEN 1969    0
3551        78                      Bangladesh  BGD 1969    .
3552        80                           India  IND 1969    0
3553        81                       Indonesia  IDN 1969    0
3554        82              Iran, Islamic Rep.  IRN 1969    0
3555        83                            Iraq  IRQ 1969    0
3556        84                          Israel  ISR 1969    0
3557        85                           Japan  JPN 1969    0
3558        86                          Jordan  JOR 1969    0
3559        87             Korea, South (Rep.)  KOR 1969    0
3560        88                        Laos PDR  LAO 1969    0
3561        89                        Malaysia  MYS 1969    0
3562        90                        Mongolia  MNG 1969    0
3563        91                         Myanmar  MMR 1969    0
3564        92                           Nepal  NPL 1969    1
3565        93                        Pakistan  PAK 1969    1
3566        94                     Philippines  PHL 1969    0
3567        95                       Singapore  SGP 1969    0
3568        96                       Sri Lanka  LKA 1969    0
3569        97            Syrian Arab Republic  SYR 1969    0
3570        98                          Taiwan    . 1969    0
3571        99                        Thailand  THA 1969    0
3572       100             Yemen Arab Republic    . 1969    0
3573       101                         Austria  AUT 1969    0
3574       102                         Belgium  BEL 1969    0
3575       103                        Bulgaria  BGR 1969    0
3576       104                  Czechoslovakia    . 1969    0
3577       105                         Denmark  DNK 1969    0
3578       106                         Finland  FIN 1969    1
3579       108                   Germany, West    . 1969    0
3580       109                   Germany, East    . 1969    0
3581       110                          Greece  GRC 1969    0
3582       111                         Hungary  HUN 1969    1
3583       112                         Iceland  ISL 1969    0
3584       113                         Ireland  IRL 1969    0
3585       114                           Italy  ITA 1969    0
3586       115                      Luxembourg  LUX 1969    0
3587       116                           Malta  MLT 1969    0
3588       117                     Netherlands  NLD 1969    0
3589       118                          Norway  NOR 1969    0
3590       119                          Poland  POL 1969    0
3591       120                        Portugal  PRT 1969    0
3592       121                         Romania  ROM 1969    0
3593       122                           Spain  ESP 1969    1
3594       123                          Sweden  SWE 1969    0
3595       124                     Switzerland  CHE 1969    0
3596       125                          Turkey  TUR 1969    0
3597       128                      Yugoslavia    . 1969    0
3598       129                       Australia  AUS 1969    0
3599       130                            Fiji  FJI 1969    .
3600       131                     New Zealand  NZL 1969    0
3601       132                Papua New Guinea  PNG 1969    .
3602       133                 Solomon Islands  SLB 1969    .
3603       134                         Vanuatu  VUT 1969    .
3604       135                   Western Samoa  WSM 1969    0
3605       136                         Bahrain  BHR 1969    .
3606       137                          Kuwait  KWT 1969    0
3607       138                            Oman  OMN 1969    0
3608       139                           Qatar  QAT 1969    .
3609       140                    Saudi Arabia  SAU 1969    0
3610       141            United Arab Emirates  ARE 1969    .
3611       142                     Afghanistan  AFG 1969    0
3612       143                         Albania  ALB 1969    0
3613       144                         Antigua  ATG 1969    .
3614       145                         Armenia  ARM 1969    .
3615       146                           Nauru    . 1969    0
3616       147                      Azerbaijan  AZE 1969    .
3617       148                          Bhutan  BTN 1969    .
3618       149                         Belarus  BLR 1969    .
3619       150              Bosnia-Herzegovina  BIH 1969    .
3620       151                          Brunei  BRN 1969    .
3621       152                        Cambodia  KHM 1969    0
3622       153                         Croatia  HRV 1969    .
3623       154                            Cuba  CUB 1969    0
3624       155                  Czech Republic  CZE 1969    .
3625       156                 Slovak Republic  SVK 1969    .
3626       157                        Dominica  DMA 1969    .
3627       158               Equatorial Guinea  GNQ 1969    0
3628       159                         Estonia  EST 1969    .
3629       160                         Eritrea  ERI 1969    .
3630       161                         Georgia  GEO 1969    .
3631       162                      Kazakhstan  KAZ 1969    .
3632       163                        Kiribati  KIR 1969    .
3633       164        Korea, North (Dem. Rep.)  PRK 1969    0
3634       165                      Kyrgyzstan  KGZ 1969    .
3635       166                          Latvia  LVA 1969    .
3636       167                         Lebanon  LBN 1969    0
3637       168                       Lithuania  LTU 1969    .
3638       169                       Macedonia  MKD 1969    .
3639       170                 Maldive Islands  MDV 1969    0
3640       171                         Moldova  MDA 1969    .
3641       172                         Namibia  NAM 1969    .
3642       174                       St. Lucia  LCA 1969    .
3643       175           Sao Tome and Principe  STP 1969    .
3644       176                        Slovenia  SVN 1969    .
3645       177                      Somaliland    . 1969    .
3646       178               Yemen PDR (South)    . 1969    0
3647       179             St. Kitts and Nevis  KNA 1969    .
3648       180                     St. Vincent  VCT 1969    .
3649       181                      Tajikistan  TJK 1969    .
3650       182                    Turkmenistan  TKM 1969    .
3651       183                         Ukraine  UKR 1969    .
3652       184                           Tonga  TON 1969    .
3653       185                      Uzbekistan  UZB 1969    .
3654       186                         Vietnam  VNM 1969    .
3655       187                          Cyprus  CYP 1969    0
3656       188                    Greek Cyprus    . 1969    .
3657       189 Micronesia, Federated States of  FSM 1969    .
3658       190               Republic of Yemen  YEM 1969    .
3659       191                         Germany  DEU 1969    .
3660       192                     Yugoslavia2  YUG 1969    .
3661       193                           Libya  LBY 1969    0
3662       194                       Ethiopia2  ETH 1969    .
3663       195                         Andorra  ADO 1969    .
3664       196                   Liechtenstein  LIE 1969    .
3665       197                Marshall Islands  MHL 1969    .
3666       198                           Palau  PLW 1969    .
3667       199                      San Marino  SMR 1969    .
3668         1                         Algeria  DZA 1970    0
3669         2                          Angola  AGO 1970    .
3670         3                           Benin  BEN 1970    0
3671         4                        Botswana  BWA 1970    0
3672         5                    Burkina Faso  BFA 1970    0
3673         6                         Burundi  BDI 1970    1
3674         7                        Cameroon  CMR 1970    0
3675         8                      Cape Verde  CPV 1970    .
3676         9        Central African Republic  CAF 1970    0
3677        10                            Chad  TCD 1970    0
3678        11                         Comoros  COM 1970    .
3679        12                           Congo  COG 1970    0
3680        13                        Djibouti  DJI 1970    .
3681        14                Egypt, Arab Rep.  EGY 1970    0
3682        15                        Ethiopia    . 1970    0
3683        16                           Gabon  GAB 1970    0
3684        17                     Gambia, The  GMB 1970    0
3685        18                           Ghana  GHA 1970    0
3686        19                          Guinea  GIN 1970    0
3687        20                   Guinea-Bissau  GNB 1970    .
3688        21                   Cote d'Ivoire  CIV 1970    0
3689        22                           Kenya  KEN 1970    0
3690        23                         Lesotho  LSO 1970    0
3691        24                         Liberia  LBR 1970    0
3692        25                      Madagascar  MDG 1970    0
3693        26                          Malawi  MWI 1970    0
3694        27                            Mali  MLI 1970    0
3695        28                      Mauritania  MRT 1970    0
3696        29                       Mauritius  MUS 1970    0
3697        30                         Morocco  MAR 1970    0
3698        31                      Mozambique  MOZ 1970    .
3699        32                           Niger  NER 1970    0
3700        33                         Nigeria  NGA 1970    0
3701        34                          Rwanda  RWA 1970    0
3702        35                         Senegal  SEN 1970    0
3703        36                      Seychelles  SYC 1970    .
3704        37                    Sierra Leone  SLE 1970    1
3705        38                         Somalia  SOM 1970    0
3706        39                    South Africa  ZAF 1970    0
3707        40                           Sudan  SDN 1970    0
3708        41                       Swaziland  SWZ 1970    0
3709        42                        Tanzania  TZA 1970    0
3710        43                            Togo  TGO 1970    0
3711        44                         Tunisia  TUN 1970    0
3712        45                          Uganda  UGA 1970    0
3713        46                           Zaire  ZAR 1970    0
3714        47                          Zambia  ZMB 1970    1
3715        48                        Zimbabwe  ZWE 1970    0
3716        49                    Bahamas, The  BHS 1970    .
3717        50                        Barbados  BRB 1970    0
3718        51                          Belize  BLZ 1970    .
3719        52                          Canada  CAN 1970    0
3720        53                      Costa Rica  CRI 1970    0
3721        54              Dominican Republic  DOM 1970    0
3722        55                     El Salvador  SLV 1970    0
3723        56                         Grenada  GRD 1970    .
3724        57                       Guatemala  GTM 1970    0
3725        58                           Haiti  HTI 1970    0
3726        59                        Honduras  HND 1970    0
3727        60                         Jamaica  JAM 1970    0
3728        61                          Mexico  MEX 1970    0
3729        62                       Nicaragua  NIC 1970    1
3730        63                          Panama  PAN 1970    0
3731        64             Trinidad and Tobago  TTO 1970    0
3732        66                       Argentina  ARG 1970    0
3733        67                         Bolivia  BOL 1970    0
3734        68                          Brazil  BRA 1970    0
3735        69                           Chile  CHL 1970    0
3736        70                        Colombia  COL 1970    1
3737        71                         Ecuador  ECU 1970    0
3738        72                          Guyana  GUY 1970    0
3739        73                        Paraguay  PRY 1970    0
3740        74                            Peru  PER 1970    0
3741        75                        Suriname  SUR 1970    .
3742        76                         Uruguay  URY 1970    0
3743        77                       Venezuela  VEN 1970    0
3744        78                      Bangladesh  BGD 1970    .
3745        80                           India  IND 1970    0
3746        81                       Indonesia  IDN 1970    0
3747        82              Iran, Islamic Rep.  IRN 1970    0
3748        83                            Iraq  IRQ 1970    0
3749        84                          Israel  ISR 1970    0
3750        85                           Japan  JPN 1970    0
3751        86                          Jordan  JOR 1970    0
3752        87             Korea, South (Rep.)  KOR 1970    0
3753        88                        Laos PDR  LAO 1970    0
3754        89                        Malaysia  MYS 1970    0
3755        90                        Mongolia  MNG 1970    0
3756        91                         Myanmar  MMR 1970    0
3757        92                           Nepal  NPL 1970    1
3758        93                        Pakistan  PAK 1970    0
3759        94                     Philippines  PHL 1970    0
3760        95                       Singapore  SGP 1970    0
3761        96                       Sri Lanka  LKA 1970    0
3762        97            Syrian Arab Republic  SYR 1970    1
3763        98                          Taiwan    . 1970    0
3764        99                        Thailand  THA 1970    0
3765       100             Yemen Arab Republic    . 1970    0
3766       101                         Austria  AUT 1970    0
3767       102                         Belgium  BEL 1970    0
3768       103                        Bulgaria  BGR 1970    0
3769       104                  Czechoslovakia    . 1970    0
3770       105                         Denmark  DNK 1970    0
3771       106                         Finland  FIN 1970    1
3772       108                   Germany, West    . 1970    0
3773       109                   Germany, East    . 1970    0
3774       110                          Greece  GRC 1970    0
3775       111                         Hungary  HUN 1970    0
3776       112                         Iceland  ISL 1970    0
3777       113                         Ireland  IRL 1970    0
3778       114                           Italy  ITA 1970    0
3779       115                      Luxembourg  LUX 1970    0
3780       116                           Malta  MLT 1970    0
3781       117                     Netherlands  NLD 1970    0
3782       118                          Norway  NOR 1970    0
3783       119                          Poland  POL 1970    1
3784       120                        Portugal  PRT 1970    0
3785       121                         Romania  ROM 1970    0
3786       122                           Spain  ESP 1970    1
3787       123                          Sweden  SWE 1970    0
3788       124                     Switzerland  CHE 1970    0
3789       125                          Turkey  TUR 1970    0
3790       128                      Yugoslavia    . 1970    0
3791       129                       Australia  AUS 1970    0
3792       130                            Fiji  FJI 1970    0
3793       131                     New Zealand  NZL 1970    0
3794       132                Papua New Guinea  PNG 1970    .
3795       133                 Solomon Islands  SLB 1970    .
3796       134                         Vanuatu  VUT 1970    .
3797       135                   Western Samoa  WSM 1970    0
3798       136                         Bahrain  BHR 1970    .
3799       137                          Kuwait  KWT 1970    0
3800       138                            Oman  OMN 1970    0
3801       139                           Qatar  QAT 1970    .
3802       140                    Saudi Arabia  SAU 1970    0
3803       141            United Arab Emirates  ARE 1970    .
3804       142                     Afghanistan  AFG 1970    0
3805       143                         Albania  ALB 1970    0
3806       144                         Antigua  ATG 1970    .
3807       145                         Armenia  ARM 1970    .
3808       146                           Nauru    . 1970    0
3809       147                      Azerbaijan  AZE 1970    .
3810       148                          Bhutan  BTN 1970    .
3811       149                         Belarus  BLR 1970    .
3812       150              Bosnia-Herzegovina  BIH 1970    .
3813       151                          Brunei  BRN 1970    .
3814       152                        Cambodia  KHM 1970    0
3815       153                         Croatia  HRV 1970    .
3816       154                            Cuba  CUB 1970    0
3817       155                  Czech Republic  CZE 1970    .
3818       156                 Slovak Republic  SVK 1970    .
3819       157                        Dominica  DMA 1970    .
3820       158               Equatorial Guinea  GNQ 1970    0
3821       159                         Estonia  EST 1970    .
3822       160                         Eritrea  ERI 1970    .
3823       161                         Georgia  GEO 1970    .
3824       162                      Kazakhstan  KAZ 1970    .
3825       163                        Kiribati  KIR 1970    .
3826       164        Korea, North (Dem. Rep.)  PRK 1970    0
3827       165                      Kyrgyzstan  KGZ 1970    .
3828       166                          Latvia  LVA 1970    .
3829       167                         Lebanon  LBN 1970    0
3830       168                       Lithuania  LTU 1970    .
3831       169                       Macedonia  MKD 1970    .
3832       170                 Maldive Islands  MDV 1970    0
3833       171                         Moldova  MDA 1970    .
3834       172                         Namibia  NAM 1970    .
3835       174                       St. Lucia  LCA 1970    .
3836       175           Sao Tome and Principe  STP 1970    .
3837       176                        Slovenia  SVN 1970    .
3838       177                      Somaliland    . 1970    .
3839       178               Yemen PDR (South)    . 1970    0
3840       179             St. Kitts and Nevis  KNA 1970    .
3841       180                     St. Vincent  VCT 1970    .
3842       181                      Tajikistan  TJK 1970    .
3843       182                    Turkmenistan  TKM 1970    .
3844       183                         Ukraine  UKR 1970    .
3845       184                           Tonga  TON 1970    0
3846       185                      Uzbekistan  UZB 1970    .
3847       186                         Vietnam  VNM 1970    .
3848       187                          Cyprus  CYP 1970    0
3849       188                    Greek Cyprus    . 1970    .
3850       189 Micronesia, Federated States of  FSM 1970    .
3851       190               Republic of Yemen  YEM 1970    .
3852       191                         Germany  DEU 1970    .
3853       192                     Yugoslavia2  YUG 1970    .
3854       193                           Libya  LBY 1970    0
3855       194                       Ethiopia2  ETH 1970    .
3856       195                         Andorra  ADO 1970    .
3857       196                   Liechtenstein  LIE 1970    .
3858       197                Marshall Islands  MHL 1970    .
3859       198                           Palau  PLW 1970    .
3860       199                      San Marino  SMR 1970    .
3861         1                         Algeria  DZA 1971    0
3862         2                          Angola  AGO 1971    .
3863         3                           Benin  BEN 1971    0
3864         4                        Botswana  BWA 1971    0
3865         5                    Burkina Faso  BFA 1971    0
3866         6                         Burundi  BDI 1971    1
3867         7                        Cameroon  CMR 1971    0
3868         8                      Cape Verde  CPV 1971    .
3869         9        Central African Republic  CAF 1971    0
3870        10                            Chad  TCD 1971    0
3871        11                         Comoros  COM 1971    .
3872        12                           Congo  COG 1971    0
3873        13                        Djibouti  DJI 1971    .
3874        14                Egypt, Arab Rep.  EGY 1971    0
3875        15                        Ethiopia    . 1971    0
3876        16                           Gabon  GAB 1971    0
3877        17                     Gambia, The  GMB 1971    0
3878        18                           Ghana  GHA 1971    0
3879        19                          Guinea  GIN 1971    0
3880        20                   Guinea-Bissau  GNB 1971    .
3881        21                   Cote d'Ivoire  CIV 1971    0
3882        22                           Kenya  KEN 1971    0
3883        23                         Lesotho  LSO 1971    0
3884        24                         Liberia  LBR 1971    0
3885        25                      Madagascar  MDG 1971    0
3886        26                          Malawi  MWI 1971    0
3887        27                            Mali  MLI 1971    0
3888        28                      Mauritania  MRT 1971    0
3889        29                       Mauritius  MUS 1971    0
3890        30                         Morocco  MAR 1971    0
3891        31                      Mozambique  MOZ 1971    .
3892        32                           Niger  NER 1971    0
3893        33                         Nigeria  NGA 1971    0
3894        34                          Rwanda  RWA 1971    0
3895        35                         Senegal  SEN 1971    0
3896        36                      Seychelles  SYC 1971    .
3897        37                    Sierra Leone  SLE 1971    1
3898        38                         Somalia  SOM 1971    1
3899        39                    South Africa  ZAF 1971    0
3900        40                           Sudan  SDN 1971    0
3901        41                       Swaziland  SWZ 1971    0
3902        42                        Tanzania  TZA 1971    0
3903        43                            Togo  TGO 1971    0
3904        44                         Tunisia  TUN 1971    0
3905        45                          Uganda  UGA 1971    0
3906        46                           Zaire  ZAR 1971    0
3907        47                          Zambia  ZMB 1971    0
3908        48                        Zimbabwe  ZWE 1971    0
3909        49                    Bahamas, The  BHS 1971    .
3910        50                        Barbados  BRB 1971    0
3911        51                          Belize  BLZ 1971    .
3912        52                          Canada  CAN 1971    0
3913        53                      Costa Rica  CRI 1971    0
3914        54              Dominican Republic  DOM 1971    0
3915        55                     El Salvador  SLV 1971    0
3916        56                         Grenada  GRD 1971    .
3917        57                       Guatemala  GTM 1971    0
3918        58                           Haiti  HTI 1971    0
3919        59                        Honduras  HND 1971    0
3920        60                         Jamaica  JAM 1971    0
3921        61                          Mexico  MEX 1971    0
3922        62                       Nicaragua  NIC 1971    1
3923        63                          Panama  PAN 1971    0
3924        64             Trinidad and Tobago  TTO 1971    0
3925        66                       Argentina  ARG 1971    1
3926        67                         Bolivia  BOL 1971    0
3927        68                          Brazil  BRA 1971    0
3928        69                           Chile  CHL 1971    0
3929        70                        Colombia  COL 1971    0
3930        71                         Ecuador  ECU 1971    0
3931        72                          Guyana  GUY 1971    0
3932        73                        Paraguay  PRY 1971    0
3933        74                            Peru  PER 1971    0
3934        75                        Suriname  SUR 1971    .
3935        76                         Uruguay  URY 1971    0
3936        77                       Venezuela  VEN 1971    0
3937        78                      Bangladesh  BGD 1971    0
3938        80                           India  IND 1971    0
3939        81                       Indonesia  IDN 1971    0
3940        82              Iran, Islamic Rep.  IRN 1971    0
3941        83                            Iraq  IRQ 1971    0
3942        84                          Israel  ISR 1971    0
3943        85                           Japan  JPN 1971    1
3944        86                          Jordan  JOR 1971    0
3945        87             Korea, South (Rep.)  KOR 1971    0
3946        88                        Laos PDR  LAO 1971    0
3947        89                        Malaysia  MYS 1971    0
3948        90                        Mongolia  MNG 1971    0
3949        91                         Myanmar  MMR 1971    0
3950        92                           Nepal  NPL 1971    0
3951        93                        Pakistan  PAK 1971    0
3952        94                     Philippines  PHL 1971    0
3953        95                       Singapore  SGP 1971    0
3954        96                       Sri Lanka  LKA 1971    0
3955        97            Syrian Arab Republic  SYR 1971    1
3956        98                          Taiwan    . 1971    0
3957        99                        Thailand  THA 1971    0
3958       100             Yemen Arab Republic    . 1971    0
3959       101                         Austria  AUT 1971    0
3960       102                         Belgium  BEL 1971    1
3961       103                        Bulgaria  BGR 1971    0
3962       104                  Czechoslovakia    . 1971    0
3963       105                         Denmark  DNK 1971    0
3964       106                         Finland  FIN 1971    0
3965       108                   Germany, West    . 1971    0
3966       109                   Germany, East    . 1971    0
3967       110                          Greece  GRC 1971    0
3968       111                         Hungary  HUN 1971    0
3969       112                         Iceland  ISL 1971    0
3970       113                         Ireland  IRL 1971    0
3971       114                           Italy  ITA 1971    1
3972       115                      Luxembourg  LUX 1971    0
3973       116                           Malta  MLT 1971    0
3974       117                     Netherlands  NLD 1971    0
3975       118                          Norway  NOR 1971    0
3976       119                          Poland  POL 1971    1
3977       120                        Portugal  PRT 1971    0
3978       121                         Romania  ROM 1971    0
3979       122                           Spain  ESP 1971    0
3980       123                          Sweden  SWE 1971    0
3981       124                     Switzerland  CHE 1971    0
3982       125                          Turkey  TUR 1971    0
3983       128                      Yugoslavia    . 1971    0
3984       129                       Australia  AUS 1971    0
3985       130                            Fiji  FJI 1971    0
3986       131                     New Zealand  NZL 1971    0
3987       132                Papua New Guinea  PNG 1971    .
3988       133                 Solomon Islands  SLB 1971    .
3989       134                         Vanuatu  VUT 1971    .
3990       135                   Western Samoa  WSM 1971    0
3991       136                         Bahrain  BHR 1971    0
3992       137                          Kuwait  KWT 1971    0
3993       138                            Oman  OMN 1971    0
3994       139                           Qatar  QAT 1971    0
3995       140                    Saudi Arabia  SAU 1971    0
3996       141            United Arab Emirates  ARE 1971    0
3997       142                     Afghanistan  AFG 1971    0
3998       143                         Albania  ALB 1971    0
3999       144                         Antigua  ATG 1971    .
4000       145                         Armenia  ARM 1971    .
4001       146                           Nauru    . 1971    0
4002       147                      Azerbaijan  AZE 1971    .
4003       148                          Bhutan  BTN 1971    0
4004       149                         Belarus  BLR 1971    .
4005       150              Bosnia-Herzegovina  BIH 1971    .
4006       151                          Brunei  BRN 1971    .
4007       152                        Cambodia  KHM 1971    0
4008       153                         Croatia  HRV 1971    .
4009       154                            Cuba  CUB 1971    0
4010       155                  Czech Republic  CZE 1971    .
4011       156                 Slovak Republic  SVK 1971    .
4012       157                        Dominica  DMA 1971    .
4013       158               Equatorial Guinea  GNQ 1971    0
4014       159                         Estonia  EST 1971    .
4015       160                         Eritrea  ERI 1971    .
4016       161                         Georgia  GEO 1971    .
4017       162                      Kazakhstan  KAZ 1971    .
4018       163                        Kiribati  KIR 1971    .
4019       164        Korea, North (Dem. Rep.)  PRK 1971    0
4020       165                      Kyrgyzstan  KGZ 1971    .
4021       166                          Latvia  LVA 1971    .
4022       167                         Lebanon  LBN 1971    0
4023       168                       Lithuania  LTU 1971    .
4024       169                       Macedonia  MKD 1971    .
4025       170                 Maldive Islands  MDV 1971    0
4026       171                         Moldova  MDA 1971    .
4027       172                         Namibia  NAM 1971    .
4028       174                       St. Lucia  LCA 1971    .
4029       175           Sao Tome and Principe  STP 1971    .
4030       176                        Slovenia  SVN 1971    .
4031       177                      Somaliland    . 1971    .
4032       178               Yemen PDR (South)    . 1971    0
4033       179             St. Kitts and Nevis  KNA 1971    .
4034       180                     St. Vincent  VCT 1971    .
4035       181                      Tajikistan  TJK 1971    .
4036       182                    Turkmenistan  TKM 1971    .
4037       183                         Ukraine  UKR 1971    .
4038       184                           Tonga  TON 1971    0
4039       185                      Uzbekistan  UZB 1971    .
4040       186                         Vietnam  VNM 1971    .
4041       187                          Cyprus  CYP 1971    0
4042       188                    Greek Cyprus    . 1971    .
4043       189 Micronesia, Federated States of  FSM 1971    .
4044       190               Republic of Yemen  YEM 1971    .
4045       191                         Germany  DEU 1971    .
4046       192                     Yugoslavia2  YUG 1971    .
4047       193                           Libya  LBY 1971    0
4048       194                       Ethiopia2  ETH 1971    .
4049       195                         Andorra  ADO 1971    .
4050       196                   Liechtenstein  LIE 1971    .
4051       197                Marshall Islands  MHL 1971    .
4052       198                           Palau  PLW 1971    .
4053       199                      San Marino  SMR 1971    .
4054         1                         Algeria  DZA 1972    0
4055         2                          Angola  AGO 1972    .
4056         3                           Benin  BEN 1972    0
4057         4                        Botswana  BWA 1972    0
4058         5                    Burkina Faso  BFA 1972    0
4059         6                         Burundi  BDI 1972    0
4060         7                        Cameroon  CMR 1972    0
4061         8                      Cape Verde  CPV 1972    .
4062         9        Central African Republic  CAF 1972    0
4063        10                            Chad  TCD 1972    0
4064        11                         Comoros  COM 1972    .
4065        12                           Congo  COG 1972    0
4066        13                        Djibouti  DJI 1972    .
4067        14                Egypt, Arab Rep.  EGY 1972    0
4068        15                        Ethiopia    . 1972    0
4069        16                           Gabon  GAB 1972    0
4070        17                     Gambia, The  GMB 1972    0
4071        18                           Ghana  GHA 1972    0
4072        19                          Guinea  GIN 1972    1
4073        20                   Guinea-Bissau  GNB 1972    .
4074        21                   Cote d'Ivoire  CIV 1972    0
4075        22                           Kenya  KEN 1972    0
4076        23                         Lesotho  LSO 1972    0
4077        24                         Liberia  LBR 1972    0
4078        25                      Madagascar  MDG 1972    0
4079        26                          Malawi  MWI 1972    0
4080        27                            Mali  MLI 1972    0
4081        28                      Mauritania  MRT 1972    0
4082        29                       Mauritius  MUS 1972    0
4083        30                         Morocco  MAR 1972    0
4084        31                      Mozambique  MOZ 1972    .
4085        32                           Niger  NER 1972    0
4086        33                         Nigeria  NGA 1972    0
4087        34                          Rwanda  RWA 1972    0
4088        35                         Senegal  SEN 1972    0
4089        36                      Seychelles  SYC 1972    .
4090        37                    Sierra Leone  SLE 1972    0
4091        38                         Somalia  SOM 1972    1
4092        39                    South Africa  ZAF 1972    0
4093        40                           Sudan  SDN 1972    1
4094        41                       Swaziland  SWZ 1972    0
4095        42                        Tanzania  TZA 1972    0
4096        43                            Togo  TGO 1972    0
4097        44                         Tunisia  TUN 1972    0
4098        45                          Uganda  UGA 1972    0
4099        46                           Zaire  ZAR 1972    0
4100        47                          Zambia  ZMB 1972    0
4101        48                        Zimbabwe  ZWE 1972    0
4102        49                    Bahamas, The  BHS 1972    .
4103        50                        Barbados  BRB 1972    0
4104        51                          Belize  BLZ 1972    .
4105        52                          Canada  CAN 1972    0
4106        53                      Costa Rica  CRI 1972    0
4107        54              Dominican Republic  DOM 1972    0
4108        55                     El Salvador  SLV 1972    0
4109        56                         Grenada  GRD 1972    .
4110        57                       Guatemala  GTM 1972    0
4111        58                           Haiti  HTI 1972    0
4112        59                        Honduras  HND 1972    0
4113        60                         Jamaica  JAM 1972    0
4114        61                          Mexico  MEX 1972    0
4115        62                       Nicaragua  NIC 1972    0
4116        63                          Panama  PAN 1972    1
4117        64             Trinidad and Tobago  TTO 1972    0
4118        66                       Argentina  ARG 1972    1
4119        67                         Bolivia  BOL 1972    0
4120        68                          Brazil  BRA 1972    0
4121        69                           Chile  CHL 1972    0
4122        70                        Colombia  COL 1972    0
4123        71                         Ecuador  ECU 1972    0
4124        72                          Guyana  GUY 1972    0
4125        73                        Paraguay  PRY 1972    0
4126        74                            Peru  PER 1972    0
4127        75                        Suriname  SUR 1972    .
4128        76                         Uruguay  URY 1972    0
4129        77                       Venezuela  VEN 1972    0
4130        78                      Bangladesh  BGD 1972    0
4131        80                           India  IND 1972    1
4132        81                       Indonesia  IDN 1972    0
4133        82              Iran, Islamic Rep.  IRN 1972    0
4134        83                            Iraq  IRQ 1972    0
4135        84                          Israel  ISR 1972    0
4136        85                           Japan  JPN 1972    1
4137        86                          Jordan  JOR 1972    0
4138        87             Korea, South (Rep.)  KOR 1972    0
4139        88                        Laos PDR  LAO 1972    0
4140        89                        Malaysia  MYS 1972    0
4141        90                        Mongolia  MNG 1972    0
4142        91                         Myanmar  MMR 1972    0
4143        92                           Nepal  NPL 1972    0
4144        93                        Pakistan  PAK 1972    0
4145        94                     Philippines  PHL 1972    0
4146        95                       Singapore  SGP 1972    0
4147        96                       Sri Lanka  LKA 1972    0
4148        97            Syrian Arab Republic  SYR 1972    0
4149        98                          Taiwan    . 1972    0
4150        99                        Thailand  THA 1972    0
4151       100             Yemen Arab Republic    . 1972    0
4152       101                         Austria  AUT 1972    0
4153       102                         Belgium  BEL 1972    1
4154       103                        Bulgaria  BGR 1972    0
4155       104                  Czechoslovakia    . 1972    0
4156       105                         Denmark  DNK 1972    0
4157       106                         Finland  FIN 1972    0
4158       108                   Germany, West    . 1972    0
4159       109                   Germany, East    . 1972    0
4160       110                          Greece  GRC 1972    0
4161       111                         Hungary  HUN 1972    0
4162       112                         Iceland  ISL 1972    0
4163       113                         Ireland  IRL 1972    0
4164       114                           Italy  ITA 1972    1
4165       115                      Luxembourg  LUX 1972    0
4166       116                           Malta  MLT 1972    0
4167       117                     Netherlands  NLD 1972    0
4168       118                          Norway  NOR 1972    0
4169       119                          Poland  POL 1972    0
4170       120                        Portugal  PRT 1972    0
4171       121                         Romania  ROM 1972    0
4172       122                           Spain  ESP 1972    0
4173       123                          Sweden  SWE 1972    0
4174       124                     Switzerland  CHE 1972    0
4175       125                          Turkey  TUR 1972    0
4176       128                      Yugoslavia    . 1972    1
4177       129                       Australia  AUS 1972    0
4178       130                            Fiji  FJI 1972    0
4179       131                     New Zealand  NZL 1972    0
4180       132                Papua New Guinea  PNG 1972    .
4181       133                 Solomon Islands  SLB 1972    .
4182       134                         Vanuatu  VUT 1972    .
4183       135                   Western Samoa  WSM 1972    0
4184       136                         Bahrain  BHR 1972    0
4185       137                          Kuwait  KWT 1972    0
4186       138                            Oman  OMN 1972    0
4187       139                           Qatar  QAT 1972    0
4188       140                    Saudi Arabia  SAU 1972    0
4189       141            United Arab Emirates  ARE 1972    0
4190       142                     Afghanistan  AFG 1972    0
4191       143                         Albania  ALB 1972    0
4192       144                         Antigua  ATG 1972    .
4193       145                         Armenia  ARM 1972    .
4194       146                           Nauru    . 1972    0
4195       147                      Azerbaijan  AZE 1972    .
4196       148                          Bhutan  BTN 1972    0
4197       149                         Belarus  BLR 1972    .
4198       150              Bosnia-Herzegovina  BIH 1972    .
4199       151                          Brunei  BRN 1972    .
4200       152                        Cambodia  KHM 1972    0
4201       153                         Croatia  HRV 1972    .
4202       154                            Cuba  CUB 1972    0
4203       155                  Czech Republic  CZE 1972    .
4204       156                 Slovak Republic  SVK 1972    .
4205       157                        Dominica  DMA 1972    .
4206       158               Equatorial Guinea  GNQ 1972    0
4207       159                         Estonia  EST 1972    .
4208       160                         Eritrea  ERI 1972    .
4209       161                         Georgia  GEO 1972    .
4210       162                      Kazakhstan  KAZ 1972    .
4211       163                        Kiribati  KIR 1972    .
4212       164        Korea, North (Dem. Rep.)  PRK 1972    0
4213       165                      Kyrgyzstan  KGZ 1972    .
4214       166                          Latvia  LVA 1972    .
4215       167                         Lebanon  LBN 1972    0
4216       168                       Lithuania  LTU 1972    .
4217       169                       Macedonia  MKD 1972    .
4218       170                 Maldive Islands  MDV 1972    0
4219       171                         Moldova  MDA 1972    .
4220       172                         Namibia  NAM 1972    .
4221       174                       St. Lucia  LCA 1972    .
4222       175           Sao Tome and Principe  STP 1972    .
4223       176                        Slovenia  SVN 1972    .
4224       177                      Somaliland    . 1972    .
4225       178               Yemen PDR (South)    . 1972    0
4226       179             St. Kitts and Nevis  KNA 1972    .
4227       180                     St. Vincent  VCT 1972    .
4228       181                      Tajikistan  TJK 1972    .
4229       182                    Turkmenistan  TKM 1972    .
4230       183                         Ukraine  UKR 1972    .
4231       184                           Tonga  TON 1972    0
4232       185                      Uzbekistan  UZB 1972    .
4233       186                         Vietnam  VNM 1972    .
4234       187                          Cyprus  CYP 1972    0
4235       188                    Greek Cyprus    . 1972    .
4236       189 Micronesia, Federated States of  FSM 1972    .
4237       190               Republic of Yemen  YEM 1972    .
4238       191                         Germany  DEU 1972    .
4239       192                     Yugoslavia2  YUG 1972    .
4240       193                           Libya  LBY 1972    0
4241       194                       Ethiopia2  ETH 1972    .
4242       195                         Andorra  ADO 1972    .
4243       196                   Liechtenstein  LIE 1972    .
4244       197                Marshall Islands  MHL 1972    .
4245       198                           Palau  PLW 1972    .
4246       199                      San Marino  SMR 1972    .
4247         1                         Algeria  DZA 1973    0
4248         2                          Angola  AGO 1973    .
4249         3                           Benin  BEN 1973    0
4250         4                        Botswana  BWA 1973    0
4251         5                    Burkina Faso  BFA 1973    0
4252         6                         Burundi  BDI 1973    0
4253         7                        Cameroon  CMR 1973    0
4254         8                      Cape Verde  CPV 1973    .
4255         9        Central African Republic  CAF 1973    0
4256        10                            Chad  TCD 1973    0
4257        11                         Comoros  COM 1973    .
4258        12                           Congo  COG 1973    0
4259        13                        Djibouti  DJI 1973    .
4260        14                Egypt, Arab Rep.  EGY 1973    0
4261        15                        Ethiopia    . 1973    0
4262        16                           Gabon  GAB 1973    0
4263        17                     Gambia, The  GMB 1973    0
4264        18                           Ghana  GHA 1973    0
4265        19                          Guinea  GIN 1973    1
4266        20                   Guinea-Bissau  GNB 1973    .
4267        21                   Cote d'Ivoire  CIV 1973    0
4268        22                           Kenya  KEN 1973    1
4269        23                         Lesotho  LSO 1973    0
4270        24                         Liberia  LBR 1973    0
4271        25                      Madagascar  MDG 1973    0
4272        26                          Malawi  MWI 1973    0
4273        27                            Mali  MLI 1973    0
4274        28                      Mauritania  MRT 1973    0
4275        29                       Mauritius  MUS 1973    0
4276        30                         Morocco  MAR 1973    0
4277        31                      Mozambique  MOZ 1973    .
4278        32                           Niger  NER 1973    0
4279        33                         Nigeria  NGA 1973    0
4280        34                          Rwanda  RWA 1973    0
4281        35                         Senegal  SEN 1973    0
4282        36                      Seychelles  SYC 1973    .
4283        37                    Sierra Leone  SLE 1973    0
4284        38                         Somalia  SOM 1973    0
4285        39                    South Africa  ZAF 1973    0
4286        40                           Sudan  SDN 1973    1
4287        41                       Swaziland  SWZ 1973    0
4288        42                        Tanzania  TZA 1973    0
4289        43                            Togo  TGO 1973    0
4290        44                         Tunisia  TUN 1973    0
4291        45                          Uganda  UGA 1973    0
4292        46                           Zaire  ZAR 1973    0
4293        47                          Zambia  ZMB 1973    0
4294        48                        Zimbabwe  ZWE 1973    0
4295        49                    Bahamas, The  BHS 1973    0
4296        50                        Barbados  BRB 1973    0
4297        51                          Belize  BLZ 1973    .
4298        52                          Canada  CAN 1973    0
4299        53                      Costa Rica  CRI 1973    0
4300        54              Dominican Republic  DOM 1973    0
4301        55                     El Salvador  SLV 1973    0
4302        56                         Grenada  GRD 1973    .
4303        57                       Guatemala  GTM 1973    0
4304        58                           Haiti  HTI 1973    0
4305        59                        Honduras  HND 1973    0
4306        60                         Jamaica  JAM 1973    0
4307        61                          Mexico  MEX 1973    0
4308        62                       Nicaragua  NIC 1973    0
4309        63                          Panama  PAN 1973    1
4310        64             Trinidad and Tobago  TTO 1973    0
4311        66                       Argentina  ARG 1973    0
4312        67                         Bolivia  BOL 1973    0
4313        68                          Brazil  BRA 1973    0
4314        69                           Chile  CHL 1973    0
4315        70                        Colombia  COL 1973    0
4316        71                         Ecuador  ECU 1973    0
4317        72                          Guyana  GUY 1973    0
4318        73                        Paraguay  PRY 1973    0
4319        74                            Peru  PER 1973    1
4320        75                        Suriname  SUR 1973    .
4321        76                         Uruguay  URY 1973    0
4322        77                       Venezuela  VEN 1973    0
4323        78                      Bangladesh  BGD 1973    0
4324        80                           India  IND 1973    1
4325        81                       Indonesia  IDN 1973    1
4326        82              Iran, Islamic Rep.  IRN 1973    0
4327        83                            Iraq  IRQ 1973    0
4328        84                          Israel  ISR 1973    0
4329        85                           Japan  JPN 1973    0
4330        86                          Jordan  JOR 1973    0
4331        87             Korea, South (Rep.)  KOR 1973    0
4332        88                        Laos PDR  LAO 1973    0
4333        89                        Malaysia  MYS 1973    0
4334        90                        Mongolia  MNG 1973    0
4335        91                         Myanmar  MMR 1973    0
4336        92                           Nepal  NPL 1973    0
4337        93                        Pakistan  PAK 1973    0
4338        94                     Philippines  PHL 1973    0
4339        95                       Singapore  SGP 1973    0
4340        96                       Sri Lanka  LKA 1973    0
4341        97            Syrian Arab Republic  SYR 1973    0
4342        98                          Taiwan    . 1973    0
4343        99                        Thailand  THA 1973    0
4344       100             Yemen Arab Republic    . 1973    0
4345       101                         Austria  AUT 1973    1
4346       102                         Belgium  BEL 1973    0
4347       103                        Bulgaria  BGR 1973    0
4348       104                  Czechoslovakia    . 1973    0
4349       105                         Denmark  DNK 1973    0
4350       106                         Finland  FIN 1973    0
4351       108                   Germany, West    . 1973    0
4352       109                   Germany, East    . 1973    0
4353       110                          Greece  GRC 1973    0
4354       111                         Hungary  HUN 1973    0
4355       112                         Iceland  ISL 1973    0
4356       113                         Ireland  IRL 1973    0
4357       114                           Italy  ITA 1973    0
4358       115                      Luxembourg  LUX 1973    0
4359       116                           Malta  MLT 1973    0
4360       117                     Netherlands  NLD 1973    0
4361       118                          Norway  NOR 1973    0
4362       119                          Poland  POL 1973    0
4363       120                        Portugal  PRT 1973    0
4364       121                         Romania  ROM 1973    0
4365       122                           Spain  ESP 1973    0
4366       123                          Sweden  SWE 1973    0
4367       124                     Switzerland  CHE 1973    0
4368       125                          Turkey  TUR 1973    0
4369       128                      Yugoslavia    . 1973    1
4370       129                       Australia  AUS 1973    1
4371       130                            Fiji  FJI 1973    0
4372       131                     New Zealand  NZL 1973    0
4373       132                Papua New Guinea  PNG 1973    .
4374       133                 Solomon Islands  SLB 1973    .
4375       134                         Vanuatu  VUT 1973    .
4376       135                   Western Samoa  WSM 1973    0
4377       136                         Bahrain  BHR 1973    0
4378       137                          Kuwait  KWT 1973    0
4379       138                            Oman  OMN 1973    0
4380       139                           Qatar  QAT 1973    0
4381       140                    Saudi Arabia  SAU 1973    0
4382       141            United Arab Emirates  ARE 1973    0
4383       142                     Afghanistan  AFG 1973    0
4384       143                         Albania  ALB 1973    0
4385       144                         Antigua  ATG 1973    .
4386       145                         Armenia  ARM 1973    .
4387       146                           Nauru    . 1973    0
4388       147                      Azerbaijan  AZE 1973    .
4389       148                          Bhutan  BTN 1973    0
4390       149                         Belarus  BLR 1973    .
4391       150              Bosnia-Herzegovina  BIH 1973    .
4392       151                          Brunei  BRN 1973    .
4393       152                        Cambodia  KHM 1973    0
4394       153                         Croatia  HRV 1973    .
4395       154                            Cuba  CUB 1973    0
4396       155                  Czech Republic  CZE 1973    .
4397       156                 Slovak Republic  SVK 1973    .
4398       157                        Dominica  DMA 1973    .
4399       158               Equatorial Guinea  GNQ 1973    0
4400       159                         Estonia  EST 1973    .
4401       160                         Eritrea  ERI 1973    .
4402       161                         Georgia  GEO 1973    .
4403       162                      Kazakhstan  KAZ 1973    .
4404       163                        Kiribati  KIR 1973    .
4405       164        Korea, North (Dem. Rep.)  PRK 1973    0
4406       165                      Kyrgyzstan  KGZ 1973    .
4407       166                          Latvia  LVA 1973    .
4408       167                         Lebanon  LBN 1973    0
4409       168                       Lithuania  LTU 1973    .
4410       169                       Macedonia  MKD 1973    .
4411       170                 Maldive Islands  MDV 1973    0
4412       171                         Moldova  MDA 1973    .
4413       172                         Namibia  NAM 1973    .
4414       174                       St. Lucia  LCA 1973    .
4415       175           Sao Tome and Principe  STP 1973    .
4416       176                        Slovenia  SVN 1973    .
4417       177                      Somaliland    . 1973    .
4418       178               Yemen PDR (South)    . 1973    0
4419       179             St. Kitts and Nevis  KNA 1973    .
4420       180                     St. Vincent  VCT 1973    .
4421       181                      Tajikistan  TJK 1973    .
4422       182                    Turkmenistan  TKM 1973    .
4423       183                         Ukraine  UKR 1973    .
4424       184                           Tonga  TON 1973    0
4425       185                      Uzbekistan  UZB 1973    .
4426       186                         Vietnam  VNM 1973    .
4427       187                          Cyprus  CYP 1973    0
4428       188                    Greek Cyprus    . 1973    .
4429       189 Micronesia, Federated States of  FSM 1973    .
4430       190               Republic of Yemen  YEM 1973    .
4431       191                         Germany  DEU 1973    .
4432       192                     Yugoslavia2  YUG 1973    .
4433       193                           Libya  LBY 1973    0
4434       194                       Ethiopia2  ETH 1973    .
4435       195                         Andorra  ADO 1973    .
4436       196                   Liechtenstein  LIE 1973    .
4437       197                Marshall Islands  MHL 1973    .
4438       198                           Palau  PLW 1973    .
4439       199                      San Marino  SMR 1973    .
4440         1                         Algeria  DZA 1974    0
4441         2                          Angola  AGO 1974    .
4442         3                           Benin  BEN 1974    0
4443         4                        Botswana  BWA 1974    0
4444         5                    Burkina Faso  BFA 1974    0
4445         6                         Burundi  BDI 1974    0
4446         7                        Cameroon  CMR 1974    1
4447         8                      Cape Verde  CPV 1974    .
4448         9        Central African Republic  CAF 1974    0
4449        10                            Chad  TCD 1974    0
4450        11                         Comoros  COM 1974    .
4451        12                           Congo  COG 1974    0
4452        13                        Djibouti  DJI 1974    .
4453        14                Egypt, Arab Rep.  EGY 1974    0
4454        15                        Ethiopia    . 1974    0
4455        16                           Gabon  GAB 1974    0
4456        17                     Gambia, The  GMB 1974    0
4457        18                           Ghana  GHA 1974    0
4458        19                          Guinea  GIN 1974    0
4459        20                   Guinea-Bissau  GNB 1974    0
4460        21                   Cote d'Ivoire  CIV 1974    0
4461        22                           Kenya  KEN 1974    1
4462        23                         Lesotho  LSO 1974    0
4463        24                         Liberia  LBR 1974    0
4464        25                      Madagascar  MDG 1974    0
4465        26                          Malawi  MWI 1974    0
4466        27                            Mali  MLI 1974    0
4467        28                      Mauritania  MRT 1974    1
4468        29                       Mauritius  MUS 1974    0
4469        30                         Morocco  MAR 1974    0
4470        31                      Mozambique  MOZ 1974    .
4471        32                           Niger  NER 1974    0
4472        33                         Nigeria  NGA 1974    0
4473        34                          Rwanda  RWA 1974    0
4474        35                         Senegal  SEN 1974    0
4475        36                      Seychelles  SYC 1974    .
4476        37                    Sierra Leone  SLE 1974    0
4477        38                         Somalia  SOM 1974    0
4478        39                    South Africa  ZAF 1974    0
4479        40                           Sudan  SDN 1974    0
4480        41                       Swaziland  SWZ 1974    0
4481        42                        Tanzania  TZA 1974    0
4482        43                            Togo  TGO 1974    0
4483        44                         Tunisia  TUN 1974    0
4484        45                          Uganda  UGA 1974    0
4485        46                           Zaire  ZAR 1974    0
4486        47                          Zambia  ZMB 1974    0
4487        48                        Zimbabwe  ZWE 1974    0
4488        49                    Bahamas, The  BHS 1974    0
4489        50                        Barbados  BRB 1974    0
4490        51                          Belize  BLZ 1974    .
4491        52                          Canada  CAN 1974    0
4492        53                      Costa Rica  CRI 1974    1
4493        54              Dominican Republic  DOM 1974    0
4494        55                     El Salvador  SLV 1974    0
4495        56                         Grenada  GRD 1974    0
4496        57                       Guatemala  GTM 1974    0
4497        58                           Haiti  HTI 1974    0
4498        59                        Honduras  HND 1974    0
4499        60                         Jamaica  JAM 1974    0
4500        61                          Mexico  MEX 1974    0
4501        62                       Nicaragua  NIC 1974    0
4502        63                          Panama  PAN 1974    0
4503        64             Trinidad and Tobago  TTO 1974    0
4504        66                       Argentina  ARG 1974    0
4505        67                         Bolivia  BOL 1974    0
4506        68                          Brazil  BRA 1974    0
4507        69                           Chile  CHL 1974    0
4508        70                        Colombia  COL 1974    0
4509        71                         Ecuador  ECU 1974    0
4510        72                          Guyana  GUY 1974    0
4511        73                        Paraguay  PRY 1974    0
4512        74                            Peru  PER 1974    1
4513        75                        Suriname  SUR 1974    .
4514        76                         Uruguay  URY 1974    0
4515        77                       Venezuela  VEN 1974    0
4516        78                      Bangladesh  BGD 1974    0
4517        80                           India  IND 1974    0
4518        81                       Indonesia  IDN 1974    1
4519        82              Iran, Islamic Rep.  IRN 1974    0
4520        83                            Iraq  IRQ 1974    1
4521        84                          Israel  ISR 1974    0
4522        85                           Japan  JPN 1974    0
4523        86                          Jordan  JOR 1974    0
4524        87             Korea, South (Rep.)  KOR 1974    0
4525        88                        Laos PDR  LAO 1974    0
4526        89                        Malaysia  MYS 1974    0
4527        90                        Mongolia  MNG 1974    0
4528        91                         Myanmar  MMR 1974    0
4529        92                           Nepal  NPL 1974    0
4530        93                        Pakistan  PAK 1974    0
4531        94                     Philippines  PHL 1974    0
4532        95                       Singapore  SGP 1974    0
4533        96                       Sri Lanka  LKA 1974    0
4534        97            Syrian Arab Republic  SYR 1974    0
4535        98                          Taiwan    . 1974    0
4536        99                        Thailand  THA 1974    0
4537       100             Yemen Arab Republic    . 1974    0
4538       101                         Austria  AUT 1974    1
4539       102                         Belgium  BEL 1974    0
4540       103                        Bulgaria  BGR 1974    0
4541       104                  Czechoslovakia    . 1974    0
4542       105                         Denmark  DNK 1974    0
4543       106                         Finland  FIN 1974    0
4544       108                   Germany, West    . 1974    0
4545       109                   Germany, East    . 1974    0
4546       110                          Greece  GRC 1974    0
4547       111                         Hungary  HUN 1974    0
4548       112                         Iceland  ISL 1974    0
4549       113                         Ireland  IRL 1974    0
4550       114                           Italy  ITA 1974    0
4551       115                      Luxembourg  LUX 1974    0
4552       116                           Malta  MLT 1974    0
4553       117                     Netherlands  NLD 1974    0
4554       118                          Norway  NOR 1974    0
4555       119                          Poland  POL 1974    0
4556       120                        Portugal  PRT 1974    0
4557       121                         Romania  ROM 1974    0
4558       122                           Spain  ESP 1974    0
4559       123                          Sweden  SWE 1974    0
4560       124                     Switzerland  CHE 1974    0
4561       125                          Turkey  TUR 1974    0
4562       128                      Yugoslavia    . 1974    0
4563       129                       Australia  AUS 1974    1
4564       130                            Fiji  FJI 1974    0
4565       131                     New Zealand  NZL 1974    0
4566       132                Papua New Guinea  PNG 1974    .
4567       133                 Solomon Islands  SLB 1974    .
4568       134                         Vanuatu  VUT 1974    .
4569       135                   Western Samoa  WSM 1974    0
4570       136                         Bahrain  BHR 1974    0
4571       137                          Kuwait  KWT 1974    0
4572       138                            Oman  OMN 1974    0
4573       139                           Qatar  QAT 1974    0
4574       140                    Saudi Arabia  SAU 1974    0
4575       141            United Arab Emirates  ARE 1974    0
4576       142                     Afghanistan  AFG 1974    0
4577       143                         Albania  ALB 1974    0
4578       144                         Antigua  ATG 1974    .
4579       145                         Armenia  ARM 1974    .
4580       146                           Nauru    . 1974    0
4581       147                      Azerbaijan  AZE 1974    .
4582       148                          Bhutan  BTN 1974    0
4583       149                         Belarus  BLR 1974    .
4584       150              Bosnia-Herzegovina  BIH 1974    .
4585       151                          Brunei  BRN 1974    .
4586       152                        Cambodia  KHM 1974    0
4587       153                         Croatia  HRV 1974    .
4588       154                            Cuba  CUB 1974    0
4589       155                  Czech Republic  CZE 1974    .
4590       156                 Slovak Republic  SVK 1974    .
4591       157                        Dominica  DMA 1974    .
4592       158               Equatorial Guinea  GNQ 1974    0
4593       159                         Estonia  EST 1974    .
4594       160                         Eritrea  ERI 1974    .
4595       161                         Georgia  GEO 1974    .
4596       162                      Kazakhstan  KAZ 1974    .
4597       163                        Kiribati  KIR 1974    .
4598       164        Korea, North (Dem. Rep.)  PRK 1974    0
4599       165                      Kyrgyzstan  KGZ 1974    .
4600       166                          Latvia  LVA 1974    .
4601       167                         Lebanon  LBN 1974    0
4602       168                       Lithuania  LTU 1974    .
4603       169                       Macedonia  MKD 1974    .
4604       170                 Maldive Islands  MDV 1974    0
4605       171                         Moldova  MDA 1974    .
4606       172                         Namibia  NAM 1974    .
4607       174                       St. Lucia  LCA 1974    .
4608       175           Sao Tome and Principe  STP 1974    .
4609       176                        Slovenia  SVN 1974    .
4610       177                      Somaliland    . 1974    .
4611       178               Yemen PDR (South)    . 1974    0
4612       179             St. Kitts and Nevis  KNA 1974    .
4613       180                     St. Vincent  VCT 1974    .
4614       181                      Tajikistan  TJK 1974    .
4615       182                    Turkmenistan  TKM 1974    .
4616       183                         Ukraine  UKR 1974    .
4617       184                           Tonga  TON 1974    0
4618       185                      Uzbekistan  UZB 1974    .
4619       186                         Vietnam  VNM 1974    .
4620       187                          Cyprus  CYP 1974    0
4621       188                    Greek Cyprus    . 1974    .
4622       189 Micronesia, Federated States of  FSM 1974    .
4623       190               Republic of Yemen  YEM 1974    .
4624       191                         Germany  DEU 1974    .
4625       192                     Yugoslavia2  YUG 1974    .
4626       193                           Libya  LBY 1974    0
4627       194                       Ethiopia2  ETH 1974    .
4628       195                         Andorra  ADO 1974    .
4629       196                   Liechtenstein  LIE 1974    .
4630       197                Marshall Islands  MHL 1974    .
4631       198                           Palau  PLW 1974    .
4632       199                      San Marino  SMR 1974    .
4633         1                         Algeria  DZA 1975    0
4634         2                          Angola  AGO 1975    0
4635         3                           Benin  BEN 1975    0
4636         4                        Botswana  BWA 1975    0
4637         5                    Burkina Faso  BFA 1975    0
4638         6                         Burundi  BDI 1975    0
4639         7                        Cameroon  CMR 1975    1
4640         8                      Cape Verde  CPV 1975    0
4641         9        Central African Republic  CAF 1975    0
4642        10                            Chad  TCD 1975    0
4643        11                         Comoros  COM 1975    0
4644        12                           Congo  COG 1975    0
4645        13                        Djibouti  DJI 1975    .
4646        14                Egypt, Arab Rep.  EGY 1975    0
4647        15                        Ethiopia    . 1975    0
4648        16                           Gabon  GAB 1975    0
4649        17                     Gambia, The  GMB 1975    0
4650        18                           Ghana  GHA 1975    0
4651        19                          Guinea  GIN 1975    0
4652        20                   Guinea-Bissau  GNB 1975    0
4653        21                   Cote d'Ivoire  CIV 1975    0
4654        22                           Kenya  KEN 1975    0
4655        23                         Lesotho  LSO 1975    0
4656        24                         Liberia  LBR 1975    0
4657        25                      Madagascar  MDG 1975    0
4658        26                          Malawi  MWI 1975    0
4659        27                            Mali  MLI 1975    0
4660        28                      Mauritania  MRT 1975    1
4661        29                       Mauritius  MUS 1975    0
4662        30                         Morocco  MAR 1975    0
4663        31                      Mozambique  MOZ 1975    0
4664        32                           Niger  NER 1975    0
4665        33                         Nigeria  NGA 1975    0
4666        34                          Rwanda  RWA 1975    0
4667        35                         Senegal  SEN 1975    0
4668        36                      Seychelles  SYC 1975    .
4669        37                    Sierra Leone  SLE 1975    0
4670        38                         Somalia  SOM 1975    0
4671        39                    South Africa  ZAF 1975    0
4672        40                           Sudan  SDN 1975    0
4673        41                       Swaziland  SWZ 1975    0
4674        42                        Tanzania  TZA 1975    1
4675        43                            Togo  TGO 1975    0
4676        44                         Tunisia  TUN 1975    0
4677        45                          Uganda  UGA 1975    0
4678        46                           Zaire  ZAR 1975    0
4679        47                          Zambia  ZMB 1975    0
4680        48                        Zimbabwe  ZWE 1975    0
4681        49                    Bahamas, The  BHS 1975    0
4682        50                        Barbados  BRB 1975    0
4683        51                          Belize  BLZ 1975    .
4684        52                          Canada  CAN 1975    0
4685        53                      Costa Rica  CRI 1975    1
4686        54              Dominican Republic  DOM 1975    0
4687        55                     El Salvador  SLV 1975    0
4688        56                         Grenada  GRD 1975    0
4689        57                       Guatemala  GTM 1975    0
4690        58                           Haiti  HTI 1975    0
4691        59                        Honduras  HND 1975    0
4692        60                         Jamaica  JAM 1975    0
4693        61                          Mexico  MEX 1975    0
4694        62                       Nicaragua  NIC 1975    0
4695        63                          Panama  PAN 1975    0
4696        64             Trinidad and Tobago  TTO 1975    0
4697        66                       Argentina  ARG 1975    0
4698        67                         Bolivia  BOL 1975    0
4699        68                          Brazil  BRA 1975    0
4700        69                           Chile  CHL 1975    0
4701        70                        Colombia  COL 1975    0
4702        71                         Ecuador  ECU 1975    0
4703        72                          Guyana  GUY 1975    1
4704        73                        Paraguay  PRY 1975    0
4705        74                            Peru  PER 1975    0
4706        75                        Suriname  SUR 1975    0
4707        76                         Uruguay  URY 1975    0
4708        77                       Venezuela  VEN 1975    0
4709        78                      Bangladesh  BGD 1975    0
4710        80                           India  IND 1975    0
4711        81                       Indonesia  IDN 1975    0
4712        82              Iran, Islamic Rep.  IRN 1975    0
4713        83                            Iraq  IRQ 1975    1
4714        84                          Israel  ISR 1975    0
4715        85                           Japan  JPN 1975    1
4716        86                          Jordan  JOR 1975    0
4717        87             Korea, South (Rep.)  KOR 1975    0
4718        88                        Laos PDR  LAO 1975    0
4719        89                        Malaysia  MYS 1975    0
4720        90                        Mongolia  MNG 1975    0
4721        91                         Myanmar  MMR 1975    0
4722        92                           Nepal  NPL 1975    0
4723        93                        Pakistan  PAK 1975    0
4724        94                     Philippines  PHL 1975    0
4725        95                       Singapore  SGP 1975    0
4726        96                       Sri Lanka  LKA 1975    0
4727        97            Syrian Arab Republic  SYR 1975    0
4728        98                          Taiwan    . 1975    0
4729        99                        Thailand  THA 1975    0
4730       100             Yemen Arab Republic    . 1975    0
4731       101                         Austria  AUT 1975    0
4732       102                         Belgium  BEL 1975    0
4733       103                        Bulgaria  BGR 1975    0
4734       104                  Czechoslovakia    . 1975    0
4735       105                         Denmark  DNK 1975    0
4736       106                         Finland  FIN 1975    0
4737       108                   Germany, West    . 1975    0
4738       109                   Germany, East    . 1975    0
4739       110                          Greece  GRC 1975    0
4740       111                         Hungary  HUN 1975    0
4741       112                         Iceland  ISL 1975    0
4742       113                         Ireland  IRL 1975    0
4743       114                           Italy  ITA 1975    1
4744       115                      Luxembourg  LUX 1975    0
4745       116                           Malta  MLT 1975    0
4746       117                     Netherlands  NLD 1975    0
4747       118                          Norway  NOR 1975    0
4748       119                          Poland  POL 1975    0
4749       120                        Portugal  PRT 1975    0
4750       121                         Romania  ROM 1975    0
4751       122                           Spain  ESP 1975    0
4752       123                          Sweden  SWE 1975    1
4753       124                     Switzerland  CHE 1975    0
4754       125                          Turkey  TUR 1975    0
4755       128                      Yugoslavia    . 1975    0
4756       129                       Australia  AUS 1975    0
4757       130                            Fiji  FJI 1975    0
4758       131                     New Zealand  NZL 1975    0
4759       132                Papua New Guinea  PNG 1975    0
4760       133                 Solomon Islands  SLB 1975    .
4761       134                         Vanuatu  VUT 1975    .
4762       135                   Western Samoa  WSM 1975    0
4763       136                         Bahrain  BHR 1975    0
4764       137                          Kuwait  KWT 1975    0
4765       138                            Oman  OMN 1975    0
4766       139                           Qatar  QAT 1975    0
4767       140                    Saudi Arabia  SAU 1975    0
4768       141            United Arab Emirates  ARE 1975    0
4769       142                     Afghanistan  AFG 1975    0
4770       143                         Albania  ALB 1975    0
4771       144                         Antigua  ATG 1975    .
4772       145                         Armenia  ARM 1975    .
4773       146                           Nauru    . 1975    0
4774       147                      Azerbaijan  AZE 1975    .
4775       148                          Bhutan  BTN 1975    0
4776       149                         Belarus  BLR 1975    .
4777       150              Bosnia-Herzegovina  BIH 1975    .
4778       151                          Brunei  BRN 1975    .
4779       152                        Cambodia  KHM 1975    0
4780       153                         Croatia  HRV 1975    .
4781       154                            Cuba  CUB 1975    0
4782       155                  Czech Republic  CZE 1975    .
4783       156                 Slovak Republic  SVK 1975    .
4784       157                        Dominica  DMA 1975    .
4785       158               Equatorial Guinea  GNQ 1975    0
4786       159                         Estonia  EST 1975    .
4787       160                         Eritrea  ERI 1975    .
4788       161                         Georgia  GEO 1975    .
4789       162                      Kazakhstan  KAZ 1975    .
4790       163                        Kiribati  KIR 1975    .
4791       164        Korea, North (Dem. Rep.)  PRK 1975    0
4792       165                      Kyrgyzstan  KGZ 1975    .
4793       166                          Latvia  LVA 1975    .
4794       167                         Lebanon  LBN 1975    0
4795       168                       Lithuania  LTU 1975    .
4796       169                       Macedonia  MKD 1975    .
4797       170                 Maldive Islands  MDV 1975    0
4798       171                         Moldova  MDA 1975    .
4799       172                         Namibia  NAM 1975    .
4800       174                       St. Lucia  LCA 1975    .
4801       175           Sao Tome and Principe  STP 1975    0
4802       176                        Slovenia  SVN 1975    .
4803       177                      Somaliland    . 1975    .
4804       178               Yemen PDR (South)    . 1975    0
4805       179             St. Kitts and Nevis  KNA 1975    .
4806       180                     St. Vincent  VCT 1975    .
4807       181                      Tajikistan  TJK 1975    .
4808       182                    Turkmenistan  TKM 1975    .
4809       183                         Ukraine  UKR 1975    .
4810       184                           Tonga  TON 1975    0
4811       185                      Uzbekistan  UZB 1975    .
4812       186                         Vietnam  VNM 1975    .
4813       187                          Cyprus  CYP 1975    0
4814       188                    Greek Cyprus    . 1975    .
4815       189 Micronesia, Federated States of  FSM 1975    .
4816       190               Republic of Yemen  YEM 1975    .
4817       191                         Germany  DEU 1975    .
4818       192                     Yugoslavia2  YUG 1975    .
4819       193                           Libya  LBY 1975    0
4820       194                       Ethiopia2  ETH 1975    .
4821       195                         Andorra  ADO 1975    .
4822       196                   Liechtenstein  LIE 1975    .
4823       197                Marshall Islands  MHL 1975    .
4824       198                           Palau  PLW 1975    .
4825       199                      San Marino  SMR 1975    .
4826         1                         Algeria  DZA 1976    0
4827         2                          Angola  AGO 1976    0
4828         3                           Benin  BEN 1976    1
4829         4                        Botswana  BWA 1976    0
4830         5                    Burkina Faso  BFA 1976    0
4831         6                         Burundi  BDI 1976    0
4832         7                        Cameroon  CMR 1976    0
4833         8                      Cape Verde  CPV 1976    0
4834         9        Central African Republic  CAF 1976    0
4835        10                            Chad  TCD 1976    0
4836        11                         Comoros  COM 1976    0
4837        12                           Congo  COG 1976    0
4838        13                        Djibouti  DJI 1976    .
4839        14                Egypt, Arab Rep.  EGY 1976    0
4840        15                        Ethiopia    . 1976    0
4841        16                           Gabon  GAB 1976    0
4842        17                     Gambia, The  GMB 1976    0
4843        18                           Ghana  GHA 1976    0
4844        19                          Guinea  GIN 1976    0
4845        20                   Guinea-Bissau  GNB 1976    0
4846        21                   Cote d'Ivoire  CIV 1976    0
4847        22                           Kenya  KEN 1976    0
4848        23                         Lesotho  LSO 1976    0
4849        24                         Liberia  LBR 1976    0
4850        25                      Madagascar  MDG 1976    0
4851        26                          Malawi  MWI 1976    0
4852        27                            Mali  MLI 1976    0
4853        28                      Mauritania  MRT 1976    0
4854        29                       Mauritius  MUS 1976    0
4855        30                         Morocco  MAR 1976    0
4856        31                      Mozambique  MOZ 1976    0
4857        32                           Niger  NER 1976    0
4858        33                         Nigeria  NGA 1976    0
4859        34                          Rwanda  RWA 1976    0
4860        35                         Senegal  SEN 1976    0
4861        36                      Seychelles  SYC 1976    0
4862        37                    Sierra Leone  SLE 1976    0
4863        38                         Somalia  SOM 1976    0
4864        39                    South Africa  ZAF 1976    0
4865        40                           Sudan  SDN 1976    0
4866        41                       Swaziland  SWZ 1976    0
4867        42                        Tanzania  TZA 1976    1
4868        43                            Togo  TGO 1976    0
4869        44                         Tunisia  TUN 1976    0
4870        45                          Uganda  UGA 1976    0
4871        46                           Zaire  ZAR 1976    0
4872        47                          Zambia  ZMB 1976    0
4873        48                        Zimbabwe  ZWE 1976    0
4874        49                    Bahamas, The  BHS 1976    0
4875        50                        Barbados  BRB 1976    0
4876        51                          Belize  BLZ 1976    .
4877        52                          Canada  CAN 1976    0
4878        53                      Costa Rica  CRI 1976    0
4879        54              Dominican Republic  DOM 1976    0
4880        55                     El Salvador  SLV 1976    0
4881        56                         Grenada  GRD 1976    0
4882        57                       Guatemala  GTM 1976    0
4883        58                           Haiti  HTI 1976    0
4884        59                        Honduras  HND 1976    0
4885        60                         Jamaica  JAM 1976    0
4886        61                          Mexico  MEX 1976    0
4887        62                       Nicaragua  NIC 1976    0
4888        63                          Panama  PAN 1976    1
4889        64             Trinidad and Tobago  TTO 1976    0
4890        66                       Argentina  ARG 1976    0
4891        67                         Bolivia  BOL 1976    0
4892        68                          Brazil  BRA 1976    0
4893        69                           Chile  CHL 1976    0
4894        70                        Colombia  COL 1976    0
4895        71                         Ecuador  ECU 1976    0
4896        72                          Guyana  GUY 1976    1
4897        73                        Paraguay  PRY 1976    0
4898        74                            Peru  PER 1976    0
4899        75                        Suriname  SUR 1976    0
4900        76                         Uruguay  URY 1976    0
4901        77                       Venezuela  VEN 1976    0
4902        78                      Bangladesh  BGD 1976    0
4903        80                           India  IND 1976    0
4904        81                       Indonesia  IDN 1976    0
4905        82              Iran, Islamic Rep.  IRN 1976    0
4906        83                            Iraq  IRQ 1976    0
4907        84                          Israel  ISR 1976    0
4908        85                           Japan  JPN 1976    1
4909        86                          Jordan  JOR 1976    0
4910        87             Korea, South (Rep.)  KOR 1976    0
4911        88                        Laos PDR  LAO 1976    0
4912        89                        Malaysia  MYS 1976    0
4913        90                        Mongolia  MNG 1976    0
4914        91                         Myanmar  MMR 1976    0
4915        92                           Nepal  NPL 1976    0
4916        93                        Pakistan  PAK 1976    1
4917        94                     Philippines  PHL 1976    0
4918        95                       Singapore  SGP 1976    0
4919        96                       Sri Lanka  LKA 1976    0
4920        97            Syrian Arab Republic  SYR 1976    0
4921        98                          Taiwan    . 1976    0
4922        99                        Thailand  THA 1976    0
4923       100             Yemen Arab Republic    . 1976    0
4924       101                         Austria  AUT 1976    0
4925       102                         Belgium  BEL 1976    0
4926       103                        Bulgaria  BGR 1976    0
4927       104                  Czechoslovakia    . 1976    0
4928       105                         Denmark  DNK 1976    0
4929       106                         Finland  FIN 1976    0
4930       108                   Germany, West    . 1976    0
4931       109                   Germany, East    . 1976    0
4932       110                          Greece  GRC 1976    0
4933       111                         Hungary  HUN 1976    0
4934       112                         Iceland  ISL 1976    0
4935       113                         Ireland  IRL 1976    0
4936       114                           Italy  ITA 1976    1
4937       115                      Luxembourg  LUX 1976    0
4938       116                           Malta  MLT 1976    0
4939       117                     Netherlands  NLD 1976    0
4940       118                          Norway  NOR 1976    0
4941       119                          Poland  POL 1976    0
4942       120                        Portugal  PRT 1976    0
4943       121                         Romania  ROM 1976    1
4944       122                           Spain  ESP 1976    0
4945       123                          Sweden  SWE 1976    1
4946       124                     Switzerland  CHE 1976    0
4947       125                          Turkey  TUR 1976    0
4948       128                      Yugoslavia    . 1976    0
4949       129                       Australia  AUS 1976    0
4950       130                            Fiji  FJI 1976    0
4951       131                     New Zealand  NZL 1976    0
4952       132                Papua New Guinea  PNG 1976    0
4953       133                 Solomon Islands  SLB 1976    .
4954       134                         Vanuatu  VUT 1976    .
4955       135                   Western Samoa  WSM 1976    0
4956       136                         Bahrain  BHR 1976    0
4957       137                          Kuwait  KWT 1976    0
4958       138                            Oman  OMN 1976    0
4959       139                           Qatar  QAT 1976    0
4960       140                    Saudi Arabia  SAU 1976    0
4961       141            United Arab Emirates  ARE 1976    0
4962       142                     Afghanistan  AFG 1976    0
4963       143                         Albania  ALB 1976    0
4964       144                         Antigua  ATG 1976    .
4965       145                         Armenia  ARM 1976    .
4966       146                           Nauru    . 1976    0
4967       147                      Azerbaijan  AZE 1976    .
4968       148                          Bhutan  BTN 1976    0
4969       149                         Belarus  BLR 1976    .
4970       150              Bosnia-Herzegovina  BIH 1976    .
4971       151                          Brunei  BRN 1976    .
4972       152                        Cambodia  KHM 1976    0
4973       153                         Croatia  HRV 1976    .
4974       154                            Cuba  CUB 1976    0
4975       155                  Czech Republic  CZE 1976    .
4976       156                 Slovak Republic  SVK 1976    .
4977       157                        Dominica  DMA 1976    .
4978       158               Equatorial Guinea  GNQ 1976    0
4979       159                         Estonia  EST 1976    .
4980       160                         Eritrea  ERI 1976    .
4981       161                         Georgia  GEO 1976    .
4982       162                      Kazakhstan  KAZ 1976    .
4983       163                        Kiribati  KIR 1976    .
4984       164        Korea, North (Dem. Rep.)  PRK 1976    0
4985       165                      Kyrgyzstan  KGZ 1976    .
4986       166                          Latvia  LVA 1976    .
4987       167                         Lebanon  LBN 1976    0
4988       168                       Lithuania  LTU 1976    .
4989       169                       Macedonia  MKD 1976    .
4990       170                 Maldive Islands  MDV 1976    0
4991       171                         Moldova  MDA 1976    .
4992       172                         Namibia  NAM 1976    .
4993       174                       St. Lucia  LCA 1976    .
4994       175           Sao Tome and Principe  STP 1976    0
4995       176                        Slovenia  SVN 1976    .
4996       177                      Somaliland    . 1976    .
4997       178               Yemen PDR (South)    . 1976    0
4998       179             St. Kitts and Nevis  KNA 1976    .
4999       180                     St. Vincent  VCT 1976    .
5000       181                      Tajikistan  TJK 1976    .
5001       182                    Turkmenistan  TKM 1976    .
5002       183                         Ukraine  UKR 1976    .
5003       184                           Tonga  TON 1976    0
5004       185                      Uzbekistan  UZB 1976    .
5005       186                         Vietnam  VNM 1976    0
5006       187                          Cyprus  CYP 1976    0
5007       188                    Greek Cyprus    . 1976    .
5008       189 Micronesia, Federated States of  FSM 1976    .
5009       190               Republic of Yemen  YEM 1976    .
5010       191                         Germany  DEU 1976    .
5011       192                     Yugoslavia2  YUG 1976    .
5012       193                           Libya  LBY 1976    1
5013       194                       Ethiopia2  ETH 1976    .
5014       195                         Andorra  ADO 1976    .
5015       196                   Liechtenstein  LIE 1976    .
5016       197                Marshall Islands  MHL 1976    .
5017       198                           Palau  PLW 1976    .
5018       199                      San Marino  SMR 1976    .
5019         1                         Algeria  DZA 1977    0
5020         2                          Angola  AGO 1977    0
5021         3                           Benin  BEN 1977    1
5022         4                        Botswana  BWA 1977    0
5023         5                    Burkina Faso  BFA 1977    0
5024         6                         Burundi  BDI 1977    0
5025         7                        Cameroon  CMR 1977    0
5026         8                      Cape Verde  CPV 1977    0
5027         9        Central African Republic  CAF 1977    0
5028        10                            Chad  TCD 1977    0
5029        11                         Comoros  COM 1977    0
5030        12                           Congo  COG 1977    0
5031        13                        Djibouti  DJI 1977    0
5032        14                Egypt, Arab Rep.  EGY 1977    0
5033        15                        Ethiopia    . 1977    0
5034        16                           Gabon  GAB 1977    0
5035        17                     Gambia, The  GMB 1977    0
5036        18                           Ghana  GHA 1977    0
5037        19                          Guinea  GIN 1977    0
5038        20                   Guinea-Bissau  GNB 1977    0
5039        21                   Cote d'Ivoire  CIV 1977    0
5040        22                           Kenya  KEN 1977    0
5041        23                         Lesotho  LSO 1977    0
5042        24                         Liberia  LBR 1977    0
5043        25                      Madagascar  MDG 1977    0
5044        26                          Malawi  MWI 1977    0
5045        27                            Mali  MLI 1977    0
5046        28                      Mauritania  MRT 1977    0
5047        29                       Mauritius  MUS 1977    1
5048        30                         Morocco  MAR 1977    0
5049        31                      Mozambique  MOZ 1977    0
5050        32                           Niger  NER 1977    0
5051        33                         Nigeria  NGA 1977    0
5052        34                          Rwanda  RWA 1977    0
5053        35                         Senegal  SEN 1977    0
5054        36                      Seychelles  SYC 1977    0
5055        37                    Sierra Leone  SLE 1977    0
5056        38                         Somalia  SOM 1977    0
5057        39                    South Africa  ZAF 1977    0
5058        40                           Sudan  SDN 1977    0
5059        41                       Swaziland  SWZ 1977    0
5060        42                        Tanzania  TZA 1977    0
5061        43                            Togo  TGO 1977    0
5062        44                         Tunisia  TUN 1977    0
5063        45                          Uganda  UGA 1977    0
5064        46                           Zaire  ZAR 1977    0
5065        47                          Zambia  ZMB 1977    0
5066        48                        Zimbabwe  ZWE 1977    0
5067        49                    Bahamas, The  BHS 1977    0
5068        50                        Barbados  BRB 1977    0
5069        51                          Belize  BLZ 1977    .
5070        52                          Canada  CAN 1977    1
5071        53                      Costa Rica  CRI 1977    0
5072        54              Dominican Republic  DOM 1977    0
5073        55                     El Salvador  SLV 1977    0
5074        56                         Grenada  GRD 1977    0
5075        57                       Guatemala  GTM 1977    0
5076        58                           Haiti  HTI 1977    0
5077        59                        Honduras  HND 1977    0
5078        60                         Jamaica  JAM 1977    0
5079        61                          Mexico  MEX 1977    0
5080        62                       Nicaragua  NIC 1977    0
5081        63                          Panama  PAN 1977    1
5082        64             Trinidad and Tobago  TTO 1977    0
5083        66                       Argentina  ARG 1977    0
5084        67                         Bolivia  BOL 1977    0
5085        68                          Brazil  BRA 1977    0
5086        69                           Chile  CHL 1977    0
5087        70                        Colombia  COL 1977    0
5088        71                         Ecuador  ECU 1977    0
5089        72                          Guyana  GUY 1977    0
5090        73                        Paraguay  PRY 1977    0
5091        74                            Peru  PER 1977    0
5092        75                        Suriname  SUR 1977    0
5093        76                         Uruguay  URY 1977    0
5094        77                       Venezuela  VEN 1977    1
5095        78                      Bangladesh  BGD 1977    0
5096        80                           India  IND 1977    1
5097        81                       Indonesia  IDN 1977    0
5098        82              Iran, Islamic Rep.  IRN 1977    0
5099        83                            Iraq  IRQ 1977    0
5100        84                          Israel  ISR 1977    0
5101        85                           Japan  JPN 1977    0
5102        86                          Jordan  JOR 1977    0
5103        87             Korea, South (Rep.)  KOR 1977    0
5104        88                        Laos PDR  LAO 1977    0
5105        89                        Malaysia  MYS 1977    0
5106        90                        Mongolia  MNG 1977    0
5107        91                         Myanmar  MMR 1977    0
5108        92                           Nepal  NPL 1977    0
5109        93                        Pakistan  PAK 1977    1
5110        94                     Philippines  PHL 1977    0
5111        95                       Singapore  SGP 1977    0
5112        96                       Sri Lanka  LKA 1977    0
5113        97            Syrian Arab Republic  SYR 1977    0
5114        98                          Taiwan    . 1977    0
5115        99                        Thailand  THA 1977    0
5116       100             Yemen Arab Republic    . 1977    0
5117       101                         Austria  AUT 1977    0
5118       102                         Belgium  BEL 1977    0
5119       103                        Bulgaria  BGR 1977    0
5120       104                  Czechoslovakia    . 1977    0
5121       105                         Denmark  DNK 1977    0
5122       106                         Finland  FIN 1977    0
5123       108                   Germany, West    . 1977    1
5124       109                   Germany, East    . 1977    0
5125       110                          Greece  GRC 1977    0
5126       111                         Hungary  HUN 1977    0
5127       112                         Iceland  ISL 1977    0
5128       113                         Ireland  IRL 1977    0
5129       114                           Italy  ITA 1977    0
5130       115                      Luxembourg  LUX 1977    0
5131       116                           Malta  MLT 1977    0
5132       117                     Netherlands  NLD 1977    0
5133       118                          Norway  NOR 1977    0
5134       119                          Poland  POL 1977    0
5135       120                        Portugal  PRT 1977    0
5136       121                         Romania  ROM 1977    1
5137       122                           Spain  ESP 1977    0
5138       123                          Sweden  SWE 1977    0
5139       124                     Switzerland  CHE 1977    0
5140       125                          Turkey  TUR 1977    0
5141       128                      Yugoslavia    . 1977    0
5142       129                       Australia  AUS 1977    0
5143       130                            Fiji  FJI 1977    0
5144       131                     New Zealand  NZL 1977    0
5145       132                Papua New Guinea  PNG 1977    0
5146       133                 Solomon Islands  SLB 1977    .
5147       134                         Vanuatu  VUT 1977    .
5148       135                   Western Samoa  WSM 1977    0
5149       136                         Bahrain  BHR 1977    0
5150       137                          Kuwait  KWT 1977    0
5151       138                            Oman  OMN 1977    0
5152       139                           Qatar  QAT 1977    0
5153       140                    Saudi Arabia  SAU 1977    0
5154       141            United Arab Emirates  ARE 1977    0
5155       142                     Afghanistan  AFG 1977    0
5156       143                         Albania  ALB 1977    0
5157       144                         Antigua  ATG 1977    .
5158       145                         Armenia  ARM 1977    .
5159       146                           Nauru    . 1977    0
5160       147                      Azerbaijan  AZE 1977    .
5161       148                          Bhutan  BTN 1977    0
5162       149                         Belarus  BLR 1977    .
5163       150              Bosnia-Herzegovina  BIH 1977    .
5164       151                          Brunei  BRN 1977    .
5165       152                        Cambodia  KHM 1977    0
5166       153                         Croatia  HRV 1977    .
5167       154                            Cuba  CUB 1977    0
5168       155                  Czech Republic  CZE 1977    .
5169       156                 Slovak Republic  SVK 1977    .
5170       157                        Dominica  DMA 1977    .
5171       158               Equatorial Guinea  GNQ 1977    0
5172       159                         Estonia  EST 1977    .
5173       160                         Eritrea  ERI 1977    .
5174       161                         Georgia  GEO 1977    .
5175       162                      Kazakhstan  KAZ 1977    .
5176       163                        Kiribati  KIR 1977    .
5177       164        Korea, North (Dem. Rep.)  PRK 1977    0
5178       165                      Kyrgyzstan  KGZ 1977    .
5179       166                          Latvia  LVA 1977    .
5180       167                         Lebanon  LBN 1977    0
5181       168                       Lithuania  LTU 1977    .
5182       169                       Macedonia  MKD 1977    .
5183       170                 Maldive Islands  MDV 1977    0
5184       171                         Moldova  MDA 1977    .
5185       172                         Namibia  NAM 1977    .
5186       174                       St. Lucia  LCA 1977    .
5187       175           Sao Tome and Principe  STP 1977    0
5188       176                        Slovenia  SVN 1977    .
5189       177                      Somaliland    . 1977    .
5190       178               Yemen PDR (South)    . 1977    0
5191       179             St. Kitts and Nevis  KNA 1977    .
5192       180                     St. Vincent  VCT 1977    .
5193       181                      Tajikistan  TJK 1977    .
5194       182                    Turkmenistan  TKM 1977    .
5195       183                         Ukraine  UKR 1977    .
5196       184                           Tonga  TON 1977    0
5197       185                      Uzbekistan  UZB 1977    .
5198       186                         Vietnam  VNM 1977    0
5199       187                          Cyprus  CYP 1977    0
5200       188                    Greek Cyprus    . 1977    .
5201       189 Micronesia, Federated States of  FSM 1977    .
5202       190               Republic of Yemen  YEM 1977    .
5203       191                         Germany  DEU 1977    .
5204       192                     Yugoslavia2  YUG 1977    .
5205       193                           Libya  LBY 1977    1
5206       194                       Ethiopia2  ETH 1977    .
5207       195                         Andorra  ADO 1977    .
5208       196                   Liechtenstein  LIE 1977    .
5209       197                Marshall Islands  MHL 1977    .
5210       198                           Palau  PLW 1977    .
5211       199                      San Marino  SMR 1977    .
5212         1                         Algeria  DZA 1978    0
5213         2                          Angola  AGO 1978    0
5214         3                           Benin  BEN 1978    0
5215         4                        Botswana  BWA 1978    0
5216         5                    Burkina Faso  BFA 1978    0
5217         6                         Burundi  BDI 1978    0
5218         7                        Cameroon  CMR 1978    0
5219         8                      Cape Verde  CPV 1978    0
5220         9        Central African Republic  CAF 1978    0
5221        10                            Chad  TCD 1978    0
5222        11                         Comoros  COM 1978    0
5223        12                           Congo  COG 1978    0
5224        13                        Djibouti  DJI 1978    0
5225        14                Egypt, Arab Rep.  EGY 1978    0
5226        15                        Ethiopia    . 1978    0
5227        16                           Gabon  GAB 1978    1
5228        17                     Gambia, The  GMB 1978    0
5229        18                           Ghana  GHA 1978    0
5230        19                          Guinea  GIN 1978    0
5231        20                   Guinea-Bissau  GNB 1978    0
5232        21                   Cote d'Ivoire  CIV 1978    0
5233        22                           Kenya  KEN 1978    0
5234        23                         Lesotho  LSO 1978    0
5235        24                         Liberia  LBR 1978    0
5236        25                      Madagascar  MDG 1978    0
5237        26                          Malawi  MWI 1978    0
5238        27                            Mali  MLI 1978    0
5239        28                      Mauritania  MRT 1978    0
5240        29                       Mauritius  MUS 1978    1
5241        30                         Morocco  MAR 1978    0
5242        31                      Mozambique  MOZ 1978    0
5243        32                           Niger  NER 1978    0
5244        33                         Nigeria  NGA 1978    1
5245        34                          Rwanda  RWA 1978    0
5246        35                         Senegal  SEN 1978    0
5247        36                      Seychelles  SYC 1978    0
5248        37                    Sierra Leone  SLE 1978    0
5249        38                         Somalia  SOM 1978    0
5250        39                    South Africa  ZAF 1978    0
5251        40                           Sudan  SDN 1978    0
5252        41                       Swaziland  SWZ 1978    0
5253        42                        Tanzania  TZA 1978    0
5254        43                            Togo  TGO 1978    0
5255        44                         Tunisia  TUN 1978    0
5256        45                          Uganda  UGA 1978    0
5257        46                           Zaire  ZAR 1978    0
5258        47                          Zambia  ZMB 1978    0
5259        48                        Zimbabwe  ZWE 1978    0
5260        49                    Bahamas, The  BHS 1978    0
5261        50                        Barbados  BRB 1978    0
5262        51                          Belize  BLZ 1978    .
5263        52                          Canada  CAN 1978    1
5264        53                      Costa Rica  CRI 1978    0
5265        54              Dominican Republic  DOM 1978    0
5266        55                     El Salvador  SLV 1978    0
5267        56                         Grenada  GRD 1978    0
5268        57                       Guatemala  GTM 1978    0
5269        58                           Haiti  HTI 1978    0
5270        59                        Honduras  HND 1978    0
5271        60                         Jamaica  JAM 1978    0
5272        61                          Mexico  MEX 1978    0
5273        62                       Nicaragua  NIC 1978    0
5274        63                          Panama  PAN 1978    0
5275        64             Trinidad and Tobago  TTO 1978    0
5276        66                       Argentina  ARG 1978    0
5277        67                         Bolivia  BOL 1978    1
5278        68                          Brazil  BRA 1978    0
5279        69                           Chile  CHL 1978    0
5280        70                        Colombia  COL 1978    0
5281        71                         Ecuador  ECU 1978    0
5282        72                          Guyana  GUY 1978    0
5283        73                        Paraguay  PRY 1978    0
5284        74                            Peru  PER 1978    0
5285        75                        Suriname  SUR 1978    0
5286        76                         Uruguay  URY 1978    0
5287        77                       Venezuela  VEN 1978    1
5288        78                      Bangladesh  BGD 1978    0
5289        80                           India  IND 1978    1
5290        81                       Indonesia  IDN 1978    0
5291        82              Iran, Islamic Rep.  IRN 1978    0
5292        83                            Iraq  IRQ 1978    0
5293        84                          Israel  ISR 1978    0
5294        85                           Japan  JPN 1978    0
5295        86                          Jordan  JOR 1978    0
5296        87             Korea, South (Rep.)  KOR 1978    0
5297        88                        Laos PDR  LAO 1978    0
5298        89                        Malaysia  MYS 1978    0
5299        90                        Mongolia  MNG 1978    0
5300        91                         Myanmar  MMR 1978    0
5301        92                           Nepal  NPL 1978    0
5302        93                        Pakistan  PAK 1978    0
5303        94                     Philippines  PHL 1978    0
5304        95                       Singapore  SGP 1978    0
5305        96                       Sri Lanka  LKA 1978    0
5306        97            Syrian Arab Republic  SYR 1978    0
5307        98                          Taiwan    . 1978    0
5308        99                        Thailand  THA 1978    0
5309       100             Yemen Arab Republic    . 1978    0
5310       101                         Austria  AUT 1978    0
5311       102                         Belgium  BEL 1978    0
5312       103                        Bulgaria  BGR 1978    0
5313       104                  Czechoslovakia    . 1978    1
5314       105                         Denmark  DNK 1978    0
5315       106                         Finland  FIN 1978    0
5316       108                   Germany, West    . 1978    1
5317       109                   Germany, East    . 1978    0
5318       110                          Greece  GRC 1978    0
5319       111                         Hungary  HUN 1978    0
5320       112                         Iceland  ISL 1978    0
5321       113                         Ireland  IRL 1978    0
5322       114                           Italy  ITA 1978    0
5323       115                      Luxembourg  LUX 1978    0
5324       116                           Malta  MLT 1978    0
5325       117                     Netherlands  NLD 1978    0
5326       118                          Norway  NOR 1978    0
5327       119                          Poland  POL 1978    0
5328       120                        Portugal  PRT 1978    0
5329       121                         Romania  ROM 1978    0
5330       122                           Spain  ESP 1978    0
5331       123                          Sweden  SWE 1978    0
5332       124                     Switzerland  CHE 1978    0
5333       125                          Turkey  TUR 1978    0
5334       128                      Yugoslavia    . 1978    0
5335       129                       Australia  AUS 1978    0
5336       130                            Fiji  FJI 1978    0
5337       131                     New Zealand  NZL 1978    0
5338       132                Papua New Guinea  PNG 1978    0
5339       133                 Solomon Islands  SLB 1978    0
5340       134                         Vanuatu  VUT 1978    .
5341       135                   Western Samoa  WSM 1978    0
5342       136                         Bahrain  BHR 1978    0
5343       137                          Kuwait  KWT 1978    1
5344       138                            Oman  OMN 1978    0
5345       139                           Qatar  QAT 1978    0
5346       140                    Saudi Arabia  SAU 1978    0
5347       141            United Arab Emirates  ARE 1978    0
5348       142                     Afghanistan  AFG 1978    0
5349       143                         Albania  ALB 1978    0
5350       144                         Antigua  ATG 1978    .
5351       145                         Armenia  ARM 1978    .
5352       146                           Nauru    . 1978    0
5353       147                      Azerbaijan  AZE 1978    .
5354       148                          Bhutan  BTN 1978    0
5355       149                         Belarus  BLR 1978    .
5356       150              Bosnia-Herzegovina  BIH 1978    .
5357       151                          Brunei  BRN 1978    .
5358       152                        Cambodia  KHM 1978    0
5359       153                         Croatia  HRV 1978    .
5360       154                            Cuba  CUB 1978    0
5361       155                  Czech Republic  CZE 1978    .
5362       156                 Slovak Republic  SVK 1978    .
5363       157                        Dominica  DMA 1978    0
5364       158               Equatorial Guinea  GNQ 1978    0
5365       159                         Estonia  EST 1978    .
5366       160                         Eritrea  ERI 1978    .
5367       161                         Georgia  GEO 1978    .
5368       162                      Kazakhstan  KAZ 1978    .
5369       163                        Kiribati  KIR 1978    .
5370       164        Korea, North (Dem. Rep.)  PRK 1978    0
5371       165                      Kyrgyzstan  KGZ 1978    .
5372       166                          Latvia  LVA 1978    .
5373       167                         Lebanon  LBN 1978    0
5374       168                       Lithuania  LTU 1978    .
5375       169                       Macedonia  MKD 1978    .
5376       170                 Maldive Islands  MDV 1978    0
5377       171                         Moldova  MDA 1978    .
5378       172                         Namibia  NAM 1978    .
5379       174                       St. Lucia  LCA 1978    .
5380       175           Sao Tome and Principe  STP 1978    0
5381       176                        Slovenia  SVN 1978    .
5382       177                      Somaliland    . 1978    .
5383       178               Yemen PDR (South)    . 1978    0
5384       179             St. Kitts and Nevis  KNA 1978    .
5385       180                     St. Vincent  VCT 1978    .
5386       181                      Tajikistan  TJK 1978    .
5387       182                    Turkmenistan  TKM 1978    .
5388       183                         Ukraine  UKR 1978    .
5389       184                           Tonga  TON 1978    0
5390       185                      Uzbekistan  UZB 1978    .
5391       186                         Vietnam  VNM 1978    0
5392       187                          Cyprus  CYP 1978    0
5393       188                    Greek Cyprus    . 1978    .
5394       189 Micronesia, Federated States of  FSM 1978    .
5395       190               Republic of Yemen  YEM 1978    .
5396       191                         Germany  DEU 1978    .
5397       192                     Yugoslavia2  YUG 1978    .
5398       193                           Libya  LBY 1978    0
5399       194                       Ethiopia2  ETH 1978    .
5400       195                         Andorra  ADO 1978    .
5401       196                   Liechtenstein  LIE 1978    .
5402       197                Marshall Islands  MHL 1978    .
5403       198                           Palau  PLW 1978    .
5404       199                      San Marino  SMR 1978    .
5405         1                         Algeria  DZA 1979    0
5406         2                          Angola  AGO 1979    0
5407         3                           Benin  BEN 1979    0
5408         4                        Botswana  BWA 1979    0
5409         5                    Burkina Faso  BFA 1979    0
5410         6                         Burundi  BDI 1979    0
5411         7                        Cameroon  CMR 1979    0
5412         8                      Cape Verde  CPV 1979    0
5413         9        Central African Republic  CAF 1979    0
5414        10                            Chad  TCD 1979    0
5415        11                         Comoros  COM 1979    0
5416        12                           Congo  COG 1979    0
5417        13                        Djibouti  DJI 1979    0
5418        14                Egypt, Arab Rep.  EGY 1979    0
5419        15                        Ethiopia    . 1979    0
5420        16                           Gabon  GAB 1979    1
5421        17                     Gambia, The  GMB 1979    0
5422        18                           Ghana  GHA 1979    0
5423        19                          Guinea  GIN 1979    0
5424        20                   Guinea-Bissau  GNB 1979    0
5425        21                   Cote d'Ivoire  CIV 1979    0
5426        22                           Kenya  KEN 1979    0
5427        23                         Lesotho  LSO 1979    0
5428        24                         Liberia  LBR 1979    0
5429        25                      Madagascar  MDG 1979    0
5430        26                          Malawi  MWI 1979    0
5431        27                            Mali  MLI 1979    0
5432        28                      Mauritania  MRT 1979    0
5433        29                       Mauritius  MUS 1979    0
5434        30                         Morocco  MAR 1979    0
5435        31                      Mozambique  MOZ 1979    0
5436        32                           Niger  NER 1979    0
5437        33                         Nigeria  NGA 1979    1
5438        34                          Rwanda  RWA 1979    0
5439        35                         Senegal  SEN 1979    0
5440        36                      Seychelles  SYC 1979    0
5441        37                    Sierra Leone  SLE 1979    0
5442        38                         Somalia  SOM 1979    0
5443        39                    South Africa  ZAF 1979    0
5444        40                           Sudan  SDN 1979    0
5445        41                       Swaziland  SWZ 1979    0
5446        42                        Tanzania  TZA 1979    0
5447        43                            Togo  TGO 1979    0
5448        44                         Tunisia  TUN 1979    0
5449        45                          Uganda  UGA 1979    0
5450        46                           Zaire  ZAR 1979    0
5451        47                          Zambia  ZMB 1979    1
5452        48                        Zimbabwe  ZWE 1979    0
5453        49                    Bahamas, The  BHS 1979    0
5454        50                        Barbados  BRB 1979    0
5455        51                          Belize  BLZ 1979    .
5456        52                          Canada  CAN 1979    0
5457        53                      Costa Rica  CRI 1979    0
5458        54              Dominican Republic  DOM 1979    0
5459        55                     El Salvador  SLV 1979    0
5460        56                         Grenada  GRD 1979    0
5461        57                       Guatemala  GTM 1979    0
5462        58                           Haiti  HTI 1979    0
5463        59                        Honduras  HND 1979    0
5464        60                         Jamaica  JAM 1979    1
5465        61                          Mexico  MEX 1979    0
5466        62                       Nicaragua  NIC 1979    0
5467        63                          Panama  PAN 1979    0
5468        64             Trinidad and Tobago  TTO 1979    0
5469        66                       Argentina  ARG 1979    0
5470        67                         Bolivia  BOL 1979    1
5471        68                          Brazil  BRA 1979    0
5472        69                           Chile  CHL 1979    0
5473        70                        Colombia  COL 1979    0
5474        71                         Ecuador  ECU 1979    0
5475        72                          Guyana  GUY 1979    0
5476        73                        Paraguay  PRY 1979    0
5477        74                            Peru  PER 1979    0
5478        75                        Suriname  SUR 1979    0
5479        76                         Uruguay  URY 1979    0
5480        77                       Venezuela  VEN 1979    0
5481        78                      Bangladesh  BGD 1979    1
5482        80                           India  IND 1979    0
5483        81                       Indonesia  IDN 1979    0
5484        82              Iran, Islamic Rep.  IRN 1979    0
5485        83                            Iraq  IRQ 1979    0
5486        84                          Israel  ISR 1979    0
5487        85                           Japan  JPN 1979    0
5488        86                          Jordan  JOR 1979    0
5489        87             Korea, South (Rep.)  KOR 1979    0
5490        88                        Laos PDR  LAO 1979    0
5491        89                        Malaysia  MYS 1979    0
5492        90                        Mongolia  MNG 1979    0
5493        91                         Myanmar  MMR 1979    0
5494        92                           Nepal  NPL 1979    0
5495        93                        Pakistan  PAK 1979    0
5496        94                     Philippines  PHL 1979    0
5497        95                       Singapore  SGP 1979    0
5498        96                       Sri Lanka  LKA 1979    0
5499        97            Syrian Arab Republic  SYR 1979    0
5500        98                          Taiwan    . 1979    0
5501        99                        Thailand  THA 1979    0
5502       100             Yemen Arab Republic    . 1979    0
5503       101                         Austria  AUT 1979    0
5504       102                         Belgium  BEL 1979    0
5505       103                        Bulgaria  BGR 1979    0
5506       104                  Czechoslovakia    . 1979    1
5507       105                         Denmark  DNK 1979    0
5508       106                         Finland  FIN 1979    0
5509       108                   Germany, West    . 1979    0
5510       109                   Germany, East    . 1979    0
5511       110                          Greece  GRC 1979    0
5512       111                         Hungary  HUN 1979    0
5513       112                         Iceland  ISL 1979    0
5514       113                         Ireland  IRL 1979    0
5515       114                           Italy  ITA 1979    0
5516       115                      Luxembourg  LUX 1979    0
5517       116                           Malta  MLT 1979    0
5518       117                     Netherlands  NLD 1979    0
5519       118                          Norway  NOR 1979    1
5520       119                          Poland  POL 1979    0
5521       120                        Portugal  PRT 1979    1
5522       121                         Romania  ROM 1979    0
5523       122                           Spain  ESP 1979    0
5524       123                          Sweden  SWE 1979    0
5525       124                     Switzerland  CHE 1979    0
5526       125                          Turkey  TUR 1979    0
5527       128                      Yugoslavia    . 1979    0
5528       129                       Australia  AUS 1979    0
5529       130                            Fiji  FJI 1979    0
5530       131                     New Zealand  NZL 1979    0
5531       132                Papua New Guinea  PNG 1979    0
5532       133                 Solomon Islands  SLB 1979    0
5533       134                         Vanuatu  VUT 1979    .
5534       135                   Western Samoa  WSM 1979    0
5535       136                         Bahrain  BHR 1979    0
5536       137                          Kuwait  KWT 1979    1
5537       138                            Oman  OMN 1979    0
5538       139                           Qatar  QAT 1979    0
5539       140                    Saudi Arabia  SAU 1979    0
5540       141            United Arab Emirates  ARE 1979    0
5541       142                     Afghanistan  AFG 1979    0
5542       143                         Albania  ALB 1979    0
5543       144                         Antigua  ATG 1979    .
5544       145                         Armenia  ARM 1979    .
5545       146                           Nauru    . 1979    0
5546       147                      Azerbaijan  AZE 1979    .
5547       148                          Bhutan  BTN 1979    0
5548       149                         Belarus  BLR 1979    .
5549       150              Bosnia-Herzegovina  BIH 1979    .
5550       151                          Brunei  BRN 1979    .
5551       152                        Cambodia  KHM 1979    0
5552       153                         Croatia  HRV 1979    .
5553       154                            Cuba  CUB 1979    0
5554       155                  Czech Republic  CZE 1979    .
5555       156                 Slovak Republic  SVK 1979    .
5556       157                        Dominica  DMA 1979    0
5557       158               Equatorial Guinea  GNQ 1979    0
5558       159                         Estonia  EST 1979    .
5559       160                         Eritrea  ERI 1979    .
5560       161                         Georgia  GEO 1979    .
5561       162                      Kazakhstan  KAZ 1979    .
5562       163                        Kiribati  KIR 1979    0
5563       164        Korea, North (Dem. Rep.)  PRK 1979    0
5564       165                      Kyrgyzstan  KGZ 1979    .
5565       166                          Latvia  LVA 1979    .
5566       167                         Lebanon  LBN 1979    0
5567       168                       Lithuania  LTU 1979    .
5568       169                       Macedonia  MKD 1979    .
5569       170                 Maldive Islands  MDV 1979    0
5570       171                         Moldova  MDA 1979    .
5571       172                         Namibia  NAM 1979    .
5572       174                       St. Lucia  LCA 1979    0
5573       175           Sao Tome and Principe  STP 1979    0
5574       176                        Slovenia  SVN 1979    .
5575       177                      Somaliland    . 1979    .
5576       178               Yemen PDR (South)    . 1979    0
5577       179             St. Kitts and Nevis  KNA 1979    .
5578       180                     St. Vincent  VCT 1979    0
5579       181                      Tajikistan  TJK 1979    .
5580       182                    Turkmenistan  TKM 1979    .
5581       183                         Ukraine  UKR 1979    .
5582       184                           Tonga  TON 1979    0
5583       185                      Uzbekistan  UZB 1979    .
5584       186                         Vietnam  VNM 1979    0
5585       187                          Cyprus  CYP 1979    0
5586       188                    Greek Cyprus    . 1979    .
5587       189 Micronesia, Federated States of  FSM 1979    .
5588       190               Republic of Yemen  YEM 1979    .
5589       191                         Germany  DEU 1979    .
5590       192                     Yugoslavia2  YUG 1979    .
5591       193                           Libya  LBY 1979    0
5592       194                       Ethiopia2  ETH 1979    .
5593       195                         Andorra  ADO 1979    .
5594       196                   Liechtenstein  LIE 1979    .
5595       197                Marshall Islands  MHL 1979    .
5596       198                           Palau  PLW 1979    .
5597       199                      San Marino  SMR 1979    .
5598         1                         Algeria  DZA 1980    0
5599         2                          Angola  AGO 1980    0
5600         3                           Benin  BEN 1980    0
5601         4                        Botswana  BWA 1980    0
5602         5                    Burkina Faso  BFA 1980    0
5603         6                         Burundi  BDI 1980    0
5604         7                        Cameroon  CMR 1980    0
5605         8                      Cape Verde  CPV 1980    0
5606         9        Central African Republic  CAF 1980    0
5607        10                            Chad  TCD 1980    0
5608        11                         Comoros  COM 1980    0
5609        12                           Congo  COG 1980    0
5610        13                        Djibouti  DJI 1980    0
5611        14                Egypt, Arab Rep.  EGY 1980    0
5612        15                        Ethiopia    . 1980    0
5613        16                           Gabon  GAB 1980    0
5614        17                     Gambia, The  GMB 1980    0
5615        18                           Ghana  GHA 1980    0
5616        19                          Guinea  GIN 1980    0
5617        20                   Guinea-Bissau  GNB 1980    0
5618        21                   Cote d'Ivoire  CIV 1980    0
5619        22                           Kenya  KEN 1980    0
5620        23                         Lesotho  LSO 1980    0
5621        24                         Liberia  LBR 1980    0
5622        25                      Madagascar  MDG 1980    0
5623        26                          Malawi  MWI 1980    0
5624        27                            Mali  MLI 1980    0
5625        28                      Mauritania  MRT 1980    0
5626        29                       Mauritius  MUS 1980    0
5627        30                         Morocco  MAR 1980    0
5628        31                      Mozambique  MOZ 1980    0
5629        32                           Niger  NER 1980    1
5630        33                         Nigeria  NGA 1980    0
5631        34                          Rwanda  RWA 1980    0
5632        35                         Senegal  SEN 1980    0
5633        36                      Seychelles  SYC 1980    0
5634        37                    Sierra Leone  SLE 1980    0
5635        38                         Somalia  SOM 1980    0
5636        39                    South Africa  ZAF 1980    0
5637        40                           Sudan  SDN 1980    0
5638        41                       Swaziland  SWZ 1980    0
5639        42                        Tanzania  TZA 1980    0
5640        43                            Togo  TGO 1980    0
5641        44                         Tunisia  TUN 1980    1
5642        45                          Uganda  UGA 1980    0
5643        46                           Zaire  ZAR 1980    0
5644        47                          Zambia  ZMB 1980    1
5645        48                        Zimbabwe  ZWE 1980    0
5646        49                    Bahamas, The  BHS 1980    0
5647        50                        Barbados  BRB 1980    0
5648        51                          Belize  BLZ 1980    .
5649        52                          Canada  CAN 1980    0
5650        53                      Costa Rica  CRI 1980    0
5651        54              Dominican Republic  DOM 1980    0
5652        55                     El Salvador  SLV 1980    0
5653        56                         Grenada  GRD 1980    0
5654        57                       Guatemala  GTM 1980    0
5655        58                           Haiti  HTI 1980    0
5656        59                        Honduras  HND 1980    0
5657        60                         Jamaica  JAM 1980    1
5658        61                          Mexico  MEX 1980    1
5659        62                       Nicaragua  NIC 1980    0
5660        63                          Panama  PAN 1980    0
5661        64             Trinidad and Tobago  TTO 1980    0
5662        66                       Argentina  ARG 1980    0
5663        67                         Bolivia  BOL 1980    0
5664        68                          Brazil  BRA 1980    0
5665        69                           Chile  CHL 1980    0
5666        70                        Colombia  COL 1980    0
5667        71                         Ecuador  ECU 1980    0
5668        72                          Guyana  GUY 1980    0
5669        73                        Paraguay  PRY 1980    0
5670        74                            Peru  PER 1980    0
5671        75                        Suriname  SUR 1980    0
5672        76                         Uruguay  URY 1980    0
5673        77                       Venezuela  VEN 1980    0
5674        78                      Bangladesh  BGD 1980    1
5675        80                           India  IND 1980    0
5676        81                       Indonesia  IDN 1980    0
5677        82              Iran, Islamic Rep.  IRN 1980    0
5678        83                            Iraq  IRQ 1980    0
5679        84                          Israel  ISR 1980    0
5680        85                           Japan  JPN 1980    0
5681        86                          Jordan  JOR 1980    0
5682        87             Korea, South (Rep.)  KOR 1980    0
5683        88                        Laos PDR  LAO 1980    0
5684        89                        Malaysia  MYS 1980    0
5685        90                        Mongolia  MNG 1980    0
5686        91                         Myanmar  MMR 1980    0
5687        92                           Nepal  NPL 1980    0
5688        93                        Pakistan  PAK 1980    0
5689        94                     Philippines  PHL 1980    1
5690        95                       Singapore  SGP 1980    0
5691        96                       Sri Lanka  LKA 1980    0
5692        97            Syrian Arab Republic  SYR 1980    0
5693        98                          Taiwan    . 1980    0
5694        99                        Thailand  THA 1980    0
5695       100             Yemen Arab Republic    . 1980    0
5696       101                         Austria  AUT 1980    0
5697       102                         Belgium  BEL 1980    0
5698       103                        Bulgaria  BGR 1980    0
5699       104                  Czechoslovakia    . 1980    0
5700       105                         Denmark  DNK 1980    0
5701       106                         Finland  FIN 1980    0
5702       108                   Germany, West    . 1980    0
5703       109                   Germany, East    . 1980    1
5704       110                          Greece  GRC 1980    0
5705       111                         Hungary  HUN 1980    0
5706       112                         Iceland  ISL 1980    0
5707       113                         Ireland  IRL 1980    0
5708       114                           Italy  ITA 1980    0
5709       115                      Luxembourg  LUX 1980    0
5710       116                           Malta  MLT 1980    0
5711       117                     Netherlands  NLD 1980    0
5712       118                          Norway  NOR 1980    1
5713       119                          Poland  POL 1980    0
5714       120                        Portugal  PRT 1980    1
5715       121                         Romania  ROM 1980    0
5716       122                           Spain  ESP 1980    0
5717       123                          Sweden  SWE 1980    0
5718       124                     Switzerland  CHE 1980    0
5719       125                          Turkey  TUR 1980    0
5720       128                      Yugoslavia    . 1980    0
5721       129                       Australia  AUS 1980    0
5722       130                            Fiji  FJI 1980    0
5723       131                     New Zealand  NZL 1980    0
5724       132                Papua New Guinea  PNG 1980    0
5725       133                 Solomon Islands  SLB 1980    0
5726       134                         Vanuatu  VUT 1980    0
5727       135                   Western Samoa  WSM 1980    0
5728       136                         Bahrain  BHR 1980    0
5729       137                          Kuwait  KWT 1980    0
5730       138                            Oman  OMN 1980    0
5731       139                           Qatar  QAT 1980    0
5732       140                    Saudi Arabia  SAU 1980    0
5733       141            United Arab Emirates  ARE 1980    0
5734       142                     Afghanistan  AFG 1980    0
5735       143                         Albania  ALB 1980    0
5736       144                         Antigua  ATG 1980    .
5737       145                         Armenia  ARM 1980    .
5738       146                           Nauru    . 1980    0
5739       147                      Azerbaijan  AZE 1980    .
5740       148                          Bhutan  BTN 1980    0
5741       149                         Belarus  BLR 1980    .
5742       150              Bosnia-Herzegovina  BIH 1980    .
5743       151                          Brunei  BRN 1980    .
5744       152                        Cambodia  KHM 1980    0
5745       153                         Croatia  HRV 1980    .
5746       154                            Cuba  CUB 1980    0
5747       155                  Czech Republic  CZE 1980    .
5748       156                 Slovak Republic  SVK 1980    .
5749       157                        Dominica  DMA 1980    0
5750       158               Equatorial Guinea  GNQ 1980    0
5751       159                         Estonia  EST 1980    .
5752       160                         Eritrea  ERI 1980    .
5753       161                         Georgia  GEO 1980    .
5754       162                      Kazakhstan  KAZ 1980    .
5755       163                        Kiribati  KIR 1980    0
5756       164        Korea, North (Dem. Rep.)  PRK 1980    0
5757       165                      Kyrgyzstan  KGZ 1980    .
5758       166                          Latvia  LVA 1980    .
5759       167                         Lebanon  LBN 1980    0
5760       168                       Lithuania  LTU 1980    .
5761       169                       Macedonia  MKD 1980    .
5762       170                 Maldive Islands  MDV 1980    0
5763       171                         Moldova  MDA 1980    .
5764       172                         Namibia  NAM 1980    .
5765       174                       St. Lucia  LCA 1980    0
5766       175           Sao Tome and Principe  STP 1980    0
5767       176                        Slovenia  SVN 1980    .
5768       177                      Somaliland    . 1980    .
5769       178               Yemen PDR (South)    . 1980    0
5770       179             St. Kitts and Nevis  KNA 1980    .
5771       180                     St. Vincent  VCT 1980    0
5772       181                      Tajikistan  TJK 1980    .
5773       182                    Turkmenistan  TKM 1980    .
5774       183                         Ukraine  UKR 1980    .
5775       184                           Tonga  TON 1980    0
5776       185                      Uzbekistan  UZB 1980    .
5777       186                         Vietnam  VNM 1980    0
5778       187                          Cyprus  CYP 1980    0
5779       188                    Greek Cyprus    . 1980    .
5780       189 Micronesia, Federated States of  FSM 1980    .
5781       190               Republic of Yemen  YEM 1980    .
5782       191                         Germany  DEU 1980    .
5783       192                     Yugoslavia2  YUG 1980    .
5784       193                           Libya  LBY 1980    0
5785       194                       Ethiopia2  ETH 1980    .
5786       195                         Andorra  ADO 1980    .
5787       196                   Liechtenstein  LIE 1980    .
5788       197                Marshall Islands  MHL 1980    .
5789       198                           Palau  PLW 1980    .
5790       199                      San Marino  SMR 1980    .
5791         1                         Algeria  DZA 1981    0
5792         2                          Angola  AGO 1981    0
5793         3                           Benin  BEN 1981    0
5794         4                        Botswana  BWA 1981    0
5795         5                    Burkina Faso  BFA 1981    0
5796         6                         Burundi  BDI 1981    0
5797         7                        Cameroon  CMR 1981    0
5798         8                      Cape Verde  CPV 1981    0
5799         9        Central African Republic  CAF 1981    0
5800        10                            Chad  TCD 1981    0
5801        11                         Comoros  COM 1981    0
5802        12                           Congo  COG 1981    0
5803        13                        Djibouti  DJI 1981    0
5804        14                Egypt, Arab Rep.  EGY 1981    0
5805        15                        Ethiopia    . 1981    0
5806        16                           Gabon  GAB 1981    0
5807        17                     Gambia, The  GMB 1981    0
5808        18                           Ghana  GHA 1981    0
5809        19                          Guinea  GIN 1981    0
5810        20                   Guinea-Bissau  GNB 1981    0
5811        21                   Cote d'Ivoire  CIV 1981    0
5812        22                           Kenya  KEN 1981    0
5813        23                         Lesotho  LSO 1981    0
5814        24                         Liberia  LBR 1981    0
5815        25                      Madagascar  MDG 1981    0
5816        26                          Malawi  MWI 1981    0
5817        27                            Mali  MLI 1981    0
5818        28                      Mauritania  MRT 1981    0
5819        29                       Mauritius  MUS 1981    0
5820        30                         Morocco  MAR 1981    0
5821        31                      Mozambique  MOZ 1981    0
5822        32                           Niger  NER 1981    1
5823        33                         Nigeria  NGA 1981    0
5824        34                          Rwanda  RWA 1981    0
5825        35                         Senegal  SEN 1981    0
5826        36                      Seychelles  SYC 1981    0
5827        37                    Sierra Leone  SLE 1981    0
5828        38                         Somalia  SOM 1981    0
5829        39                    South Africa  ZAF 1981    0
5830        40                           Sudan  SDN 1981    0
5831        41                       Swaziland  SWZ 1981    0
5832        42                        Tanzania  TZA 1981    0
5833        43                            Togo  TGO 1981    0
5834        44                         Tunisia  TUN 1981    1
5835        45                          Uganda  UGA 1981    1
5836        46                           Zaire  ZAR 1981    0
5837        47                          Zambia  ZMB 1981    0
5838        48                        Zimbabwe  ZWE 1981    0
5839        49                    Bahamas, The  BHS 1981    0
5840        50                        Barbados  BRB 1981    0
5841        51                          Belize  BLZ 1981    0
5842        52                          Canada  CAN 1981    0
5843        53                      Costa Rica  CRI 1981    0
5844        54              Dominican Republic  DOM 1981    0
5845        55                     El Salvador  SLV 1981    0
5846        56                         Grenada  GRD 1981    0
5847        57                       Guatemala  GTM 1981    0
5848        58                           Haiti  HTI 1981    0
5849        59                        Honduras  HND 1981    0
5850        60                         Jamaica  JAM 1981    0
5851        61                          Mexico  MEX 1981    1
5852        62                       Nicaragua  NIC 1981    0
5853        63                          Panama  PAN 1981    1
5854        64             Trinidad and Tobago  TTO 1981    0
5855        66                       Argentina  ARG 1981    0
5856        67                         Bolivia  BOL 1981    0
5857        68                          Brazil  BRA 1981    0
5858        69                           Chile  CHL 1981    0
5859        70                        Colombia  COL 1981    0
5860        71                         Ecuador  ECU 1981    0
5861        72                          Guyana  GUY 1981    0
5862        73                        Paraguay  PRY 1981    0
5863        74                            Peru  PER 1981    0
5864        75                        Suriname  SUR 1981    0
5865        76                         Uruguay  URY 1981    0
5866        77                       Venezuela  VEN 1981    0
5867        78                      Bangladesh  BGD 1981    0
5868        80                           India  IND 1981    0
5869        81                       Indonesia  IDN 1981    0
5870        82              Iran, Islamic Rep.  IRN 1981    0
5871        83                            Iraq  IRQ 1981    0
5872        84                          Israel  ISR 1981    0
5873        85                           Japan  JPN 1981    1
5874        86                          Jordan  JOR 1981    0
5875        87             Korea, South (Rep.)  KOR 1981    0
5876        88                        Laos PDR  LAO 1981    0
5877        89                        Malaysia  MYS 1981    0
5878        90                        Mongolia  MNG 1981    0
5879        91                         Myanmar  MMR 1981    0
5880        92                           Nepal  NPL 1981    0
5881        93                        Pakistan  PAK 1981    0
5882        94                     Philippines  PHL 1981    1
5883        95                       Singapore  SGP 1981    0
5884        96                       Sri Lanka  LKA 1981    0
5885        97            Syrian Arab Republic  SYR 1981    0
5886        98                          Taiwan    . 1981    0
5887        99                        Thailand  THA 1981    0
5888       100             Yemen Arab Republic    . 1981    0
5889       101                         Austria  AUT 1981    0
5890       102                         Belgium  BEL 1981    0
5891       103                        Bulgaria  BGR 1981    0
5892       104                  Czechoslovakia    . 1981    0
5893       105                         Denmark  DNK 1981    0
5894       106                         Finland  FIN 1981    0
5895       108                   Germany, West    . 1981    0
5896       109                   Germany, East    . 1981    1
5897       110                          Greece  GRC 1981    0
5898       111                         Hungary  HUN 1981    0
5899       112                         Iceland  ISL 1981    0
5900       113                         Ireland  IRL 1981    1
5901       114                           Italy  ITA 1981    0
5902       115                      Luxembourg  LUX 1981    0
5903       116                           Malta  MLT 1981    0
5904       117                     Netherlands  NLD 1981    0
5905       118                          Norway  NOR 1981    0
5906       119                          Poland  POL 1981    0
5907       120                        Portugal  PRT 1981    0
5908       121                         Romania  ROM 1981    0
5909       122                           Spain  ESP 1981    1
5910       123                          Sweden  SWE 1981    0
5911       124                     Switzerland  CHE 1981    0
5912       125                          Turkey  TUR 1981    0
5913       128                      Yugoslavia    . 1981    0
5914       129                       Australia  AUS 1981    0
5915       130                            Fiji  FJI 1981    0
5916       131                     New Zealand  NZL 1981    0
5917       132                Papua New Guinea  PNG 1981    0
5918       133                 Solomon Islands  SLB 1981    0
5919       134                         Vanuatu  VUT 1981    0
5920       135                   Western Samoa  WSM 1981    0
5921       136                         Bahrain  BHR 1981    0
5922       137                          Kuwait  KWT 1981    0
5923       138                            Oman  OMN 1981    0
5924       139                           Qatar  QAT 1981    0
5925       140                    Saudi Arabia  SAU 1981    0
5926       141            United Arab Emirates  ARE 1981    0
5927       142                     Afghanistan  AFG 1981    0
5928       143                         Albania  ALB 1981    0
5929       144                         Antigua  ATG 1981    0
5930       145                         Armenia  ARM 1981    .
5931       146                           Nauru    . 1981    0
5932       147                      Azerbaijan  AZE 1981    .
5933       148                          Bhutan  BTN 1981    0
5934       149                         Belarus  BLR 1981    .
5935       150              Bosnia-Herzegovina  BIH 1981    .
5936       151                          Brunei  BRN 1981    .
5937       152                        Cambodia  KHM 1981    0
5938       153                         Croatia  HRV 1981    .
5939       154                            Cuba  CUB 1981    0
5940       155                  Czech Republic  CZE 1981    .
5941       156                 Slovak Republic  SVK 1981    .
5942       157                        Dominica  DMA 1981    0
5943       158               Equatorial Guinea  GNQ 1981    0
5944       159                         Estonia  EST 1981    .
5945       160                         Eritrea  ERI 1981    .
5946       161                         Georgia  GEO 1981    .
5947       162                      Kazakhstan  KAZ 1981    .
5948       163                        Kiribati  KIR 1981    0
5949       164        Korea, North (Dem. Rep.)  PRK 1981    0
5950       165                      Kyrgyzstan  KGZ 1981    .
5951       166                          Latvia  LVA 1981    .
5952       167                         Lebanon  LBN 1981    0
5953       168                       Lithuania  LTU 1981    .
5954       169                       Macedonia  MKD 1981    .
5955       170                 Maldive Islands  MDV 1981    0
5956       171                         Moldova  MDA 1981    .
5957       172                         Namibia  NAM 1981    .
5958       174                       St. Lucia  LCA 1981    0
5959       175           Sao Tome and Principe  STP 1981    0
5960       176                        Slovenia  SVN 1981    .
5961       177                      Somaliland    . 1981    .
5962       178               Yemen PDR (South)    . 1981    0
5963       179             St. Kitts and Nevis  KNA 1981    .
5964       180                     St. Vincent  VCT 1981    0
5965       181                      Tajikistan  TJK 1981    .
5966       182                    Turkmenistan  TKM 1981    .
5967       183                         Ukraine  UKR 1981    .
5968       184                           Tonga  TON 1981    0
5969       185                      Uzbekistan  UZB 1981    .
5970       186                         Vietnam  VNM 1981    0
5971       187                          Cyprus  CYP 1981    0
5972       188                    Greek Cyprus    . 1981    .
5973       189 Micronesia, Federated States of  FSM 1981    .
5974       190               Republic of Yemen  YEM 1981    .
5975       191                         Germany  DEU 1981    .
5976       192                     Yugoslavia2  YUG 1981    .
5977       193                           Libya  LBY 1981    0
5978       194                       Ethiopia2  ETH 1981    .
5979       195                         Andorra  ADO 1981    .
5980       196                   Liechtenstein  LIE 1981    .
5981       197                Marshall Islands  MHL 1981    .
5982       198                           Palau  PLW 1981    .
5983       199                      San Marino  SMR 1981    .
5984         1                         Algeria  DZA 1982    0
5985         2                          Angola  AGO 1982    0
5986         3                           Benin  BEN 1982    0
5987         4                        Botswana  BWA 1982    0
5988         5                    Burkina Faso  BFA 1982    0
5989         6                         Burundi  BDI 1982    0
5990         7                        Cameroon  CMR 1982    0
5991         8                      Cape Verde  CPV 1982    0
5992         9        Central African Republic  CAF 1982    0
5993        10                            Chad  TCD 1982    0
5994        11                         Comoros  COM 1982    0
5995        12                           Congo  COG 1982    0
5996        13                        Djibouti  DJI 1982    0
5997        14                Egypt, Arab Rep.  EGY 1982    0
5998        15                        Ethiopia    . 1982    0
5999        16                           Gabon  GAB 1982    0
6000        17                     Gambia, The  GMB 1982    0
6001        18                           Ghana  GHA 1982    0
6002        19                          Guinea  GIN 1982    0
6003        20                   Guinea-Bissau  GNB 1982    0
6004        21                   Cote d'Ivoire  CIV 1982    0
6005        22                           Kenya  KEN 1982    0
6006        23                         Lesotho  LSO 1982    0
6007        24                         Liberia  LBR 1982    0
6008        25                      Madagascar  MDG 1982    0
6009        26                          Malawi  MWI 1982    0
6010        27                            Mali  MLI 1982    0
6011        28                      Mauritania  MRT 1982    0
6012        29                       Mauritius  MUS 1982    0
6013        30                         Morocco  MAR 1982    0
6014        31                      Mozambique  MOZ 1982    0
6015        32                           Niger  NER 1982    0
6016        33                         Nigeria  NGA 1982    0
6017        34                          Rwanda  RWA 1982    0
6018        35                         Senegal  SEN 1982    0
6019        36                      Seychelles  SYC 1982    0
6020        37                    Sierra Leone  SLE 1982    0
6021        38                         Somalia  SOM 1982    0
6022        39                    South Africa  ZAF 1982    0
6023        40                           Sudan  SDN 1982    0
6024        41                       Swaziland  SWZ 1982    0
6025        42                        Tanzania  TZA 1982    0
6026        43                            Togo  TGO 1982    1
6027        44                         Tunisia  TUN 1982    0
6028        45                          Uganda  UGA 1982    1
6029        46                           Zaire  ZAR 1982    1
6030        47                          Zambia  ZMB 1982    0
6031        48                        Zimbabwe  ZWE 1982    0
6032        49                    Bahamas, The  BHS 1982    0
6033        50                        Barbados  BRB 1982    0
6034        51                          Belize  BLZ 1982    0
6035        52                          Canada  CAN 1982    0
6036        53                      Costa Rica  CRI 1982    0
6037        54              Dominican Republic  DOM 1982    0
6038        55                     El Salvador  SLV 1982    0
6039        56                         Grenada  GRD 1982    0
6040        57                       Guatemala  GTM 1982    0
6041        58                           Haiti  HTI 1982    0
6042        59                        Honduras  HND 1982    0
6043        60                         Jamaica  JAM 1982    0
6044        61                          Mexico  MEX 1982    0
6045        62                       Nicaragua  NIC 1982    0
6046        63                          Panama  PAN 1982    1
6047        64             Trinidad and Tobago  TTO 1982    0
6048        66                       Argentina  ARG 1982    0
6049        67                         Bolivia  BOL 1982    0
6050        68                          Brazil  BRA 1982    0
6051        69                           Chile  CHL 1982    0
6052        70                        Colombia  COL 1982    0
6053        71                         Ecuador  ECU 1982    0
6054        72                          Guyana  GUY 1982    1
6055        73                        Paraguay  PRY 1982    0
6056        74                            Peru  PER 1982    0
6057        75                        Suriname  SUR 1982    0
6058        76                         Uruguay  URY 1982    0
6059        77                       Venezuela  VEN 1982    0
6060        78                      Bangladesh  BGD 1982    0
6061        80                           India  IND 1982    0
6062        81                       Indonesia  IDN 1982    0
6063        82              Iran, Islamic Rep.  IRN 1982    0
6064        83                            Iraq  IRQ 1982    0
6065        84                          Israel  ISR 1982    0
6066        85                           Japan  JPN 1982    1
6067        86                          Jordan  JOR 1982    1
6068        87             Korea, South (Rep.)  KOR 1982    0
6069        88                        Laos PDR  LAO 1982    0
6070        89                        Malaysia  MYS 1982    0
6071        90                        Mongolia  MNG 1982    0
6072        91                         Myanmar  MMR 1982    0
6073        92                           Nepal  NPL 1982    0
6074        93                        Pakistan  PAK 1982    0
6075        94                     Philippines  PHL 1982    0
6076        95                       Singapore  SGP 1982    0
6077        96                       Sri Lanka  LKA 1982    0
6078        97            Syrian Arab Republic  SYR 1982    0
6079        98                          Taiwan    . 1982    0
6080        99                        Thailand  THA 1982    0
6081       100             Yemen Arab Republic    . 1982    0
6082       101                         Austria  AUT 1982    0
6083       102                         Belgium  BEL 1982    0
6084       103                        Bulgaria  BGR 1982    0
6085       104                  Czechoslovakia    . 1982    0
6086       105                         Denmark  DNK 1982    0
6087       106                         Finland  FIN 1982    0
6088       108                   Germany, West    . 1982    0
6089       109                   Germany, East    . 1982    0
6090       110                          Greece  GRC 1982    0
6091       111                         Hungary  HUN 1982    0
6092       112                         Iceland  ISL 1982    0
6093       113                         Ireland  IRL 1982    1
6094       114                           Italy  ITA 1982    0
6095       115                      Luxembourg  LUX 1982    0
6096       116                           Malta  MLT 1982    0
6097       117                     Netherlands  NLD 1982    0
6098       118                          Norway  NOR 1982    0
6099       119                          Poland  POL 1982    1
6100       120                        Portugal  PRT 1982    0
6101       121                         Romania  ROM 1982    0
6102       122                           Spain  ESP 1982    1
6103       123                          Sweden  SWE 1982    0
6104       124                     Switzerland  CHE 1982    0
6105       125                          Turkey  TUR 1982    0
6106       128                      Yugoslavia    . 1982    0
6107       129                       Australia  AUS 1982    0
6108       130                            Fiji  FJI 1982    0
6109       131                     New Zealand  NZL 1982    0
6110       132                Papua New Guinea  PNG 1982    0
6111       133                 Solomon Islands  SLB 1982    0
6112       134                         Vanuatu  VUT 1982    0
6113       135                   Western Samoa  WSM 1982    0
6114       136                         Bahrain  BHR 1982    0
6115       137                          Kuwait  KWT 1982    0
6116       138                            Oman  OMN 1982    0
6117       139                           Qatar  QAT 1982    0
6118       140                    Saudi Arabia  SAU 1982    0
6119       141            United Arab Emirates  ARE 1982    0
6120       142                     Afghanistan  AFG 1982    0
6121       143                         Albania  ALB 1982    0
6122       144                         Antigua  ATG 1982    0
6123       145                         Armenia  ARM 1982    .
6124       146                           Nauru    . 1982    0
6125       147                      Azerbaijan  AZE 1982    .
6126       148                          Bhutan  BTN 1982    0
6127       149                         Belarus  BLR 1982    .
6128       150              Bosnia-Herzegovina  BIH 1982    .
6129       151                          Brunei  BRN 1982    .
6130       152                        Cambodia  KHM 1982    0
6131       153                         Croatia  HRV 1982    .
6132       154                            Cuba  CUB 1982    0
6133       155                  Czech Republic  CZE 1982    .
6134       156                 Slovak Republic  SVK 1982    .
6135       157                        Dominica  DMA 1982    0
6136       158               Equatorial Guinea  GNQ 1982    0
6137       159                         Estonia  EST 1982    .
6138       160                         Eritrea  ERI 1982    .
6139       161                         Georgia  GEO 1982    .
6140       162                      Kazakhstan  KAZ 1982    .
6141       163                        Kiribati  KIR 1982    0
6142       164        Korea, North (Dem. Rep.)  PRK 1982    0
6143       165                      Kyrgyzstan  KGZ 1982    .
6144       166                          Latvia  LVA 1982    .
6145       167                         Lebanon  LBN 1982    0
6146       168                       Lithuania  LTU 1982    .
6147       169                       Macedonia  MKD 1982    .
6148       170                 Maldive Islands  MDV 1982    0
6149       171                         Moldova  MDA 1982    .
6150       172                         Namibia  NAM 1982    .
6151       174                       St. Lucia  LCA 1982    0
6152       175           Sao Tome and Principe  STP 1982    0
6153       176                        Slovenia  SVN 1982    .
6154       177                      Somaliland    . 1982    .
6155       178               Yemen PDR (South)    . 1982    0
6156       179             St. Kitts and Nevis  KNA 1982    .
6157       180                     St. Vincent  VCT 1982    0
6158       181                      Tajikistan  TJK 1982    .
6159       182                    Turkmenistan  TKM 1982    .
6160       183                         Ukraine  UKR 1982    .
6161       184                           Tonga  TON 1982    0
6162       185                      Uzbekistan  UZB 1982    .
6163       186                         Vietnam  VNM 1982    0
6164       187                          Cyprus  CYP 1982    0
6165       188                    Greek Cyprus    . 1982    .
6166       189 Micronesia, Federated States of  FSM 1982    .
6167       190               Republic of Yemen  YEM 1982    .
6168       191                         Germany  DEU 1982    .
6169       192                     Yugoslavia2  YUG 1982    .
6170       193                           Libya  LBY 1982    0
6171       194                       Ethiopia2  ETH 1982    .
6172       195                         Andorra  ADO 1982    .
6173       196                   Liechtenstein  LIE 1982    .
6174       197                Marshall Islands  MHL 1982    .
6175       198                           Palau  PLW 1982    .
6176       199                      San Marino  SMR 1982    .
6177         1                         Algeria  DZA 1983    0
6178         2                          Angola  AGO 1983    0
6179         3                           Benin  BEN 1983    0
6180         4                        Botswana  BWA 1983    0
6181         5                    Burkina Faso  BFA 1983    0
6182         6                         Burundi  BDI 1983    0
6183         7                        Cameroon  CMR 1983    0
6184         8                      Cape Verde  CPV 1983    0
6185         9        Central African Republic  CAF 1983    0
6186        10                            Chad  TCD 1983    0
6187        11                         Comoros  COM 1983    0
6188        12                           Congo  COG 1983    0
6189        13                        Djibouti  DJI 1983    0
6190        14                Egypt, Arab Rep.  EGY 1983    0
6191        15                        Ethiopia    . 1983    0
6192        16                           Gabon  GAB 1983    0
6193        17                     Gambia, The  GMB 1983    0
6194        18                           Ghana  GHA 1983    0
6195        19                          Guinea  GIN 1983    0
6196        20                   Guinea-Bissau  GNB 1983    0
6197        21                   Cote d'Ivoire  CIV 1983    0
6198        22                           Kenya  KEN 1983    0
6199        23                         Lesotho  LSO 1983    0
6200        24                         Liberia  LBR 1983    0
6201        25                      Madagascar  MDG 1983    0
6202        26                          Malawi  MWI 1983    0
6203        27                            Mali  MLI 1983    0
6204        28                      Mauritania  MRT 1983    0
6205        29                       Mauritius  MUS 1983    0
6206        30                         Morocco  MAR 1983    0
6207        31                      Mozambique  MOZ 1983    0
6208        32                           Niger  NER 1983    0
6209        33                         Nigeria  NGA 1983    0
6210        34                          Rwanda  RWA 1983    0
6211        35                         Senegal  SEN 1983    0
6212        36                      Seychelles  SYC 1983    0
6213        37                    Sierra Leone  SLE 1983    0
6214        38                         Somalia  SOM 1983    0
6215        39                    South Africa  ZAF 1983    0
6216        40                           Sudan  SDN 1983    0
6217        41                       Swaziland  SWZ 1983    0
6218        42                        Tanzania  TZA 1983    0
6219        43                            Togo  TGO 1983    1
6220        44                         Tunisia  TUN 1983    0
6221        45                          Uganda  UGA 1983    0
6222        46                           Zaire  ZAR 1983    1
6223        47                          Zambia  ZMB 1983    0
6224        48                        Zimbabwe  ZWE 1983    1
6225        49                    Bahamas, The  BHS 1983    0
6226        50                        Barbados  BRB 1983    0
6227        51                          Belize  BLZ 1983    0
6228        52                          Canada  CAN 1983    0
6229        53                      Costa Rica  CRI 1983    0
6230        54              Dominican Republic  DOM 1983    0
6231        55                     El Salvador  SLV 1983    0
6232        56                         Grenada  GRD 1983    0
6233        57                       Guatemala  GTM 1983    0
6234        58                           Haiti  HTI 1983    0
6235        59                        Honduras  HND 1983    0
6236        60                         Jamaica  JAM 1983    0
6237        61                          Mexico  MEX 1983    0
6238        62                       Nicaragua  NIC 1983    1
6239        63                          Panama  PAN 1983    0
6240        64             Trinidad and Tobago  TTO 1983    0
6241        66                       Argentina  ARG 1983    0
6242        67                         Bolivia  BOL 1983    0
6243        68                          Brazil  BRA 1983    0
6244        69                           Chile  CHL 1983    0
6245        70                        Colombia  COL 1983    0
6246        71                         Ecuador  ECU 1983    0
6247        72                          Guyana  GUY 1983    1
6248        73                        Paraguay  PRY 1983    0
6249        74                            Peru  PER 1983    0
6250        75                        Suriname  SUR 1983    0
6251        76                         Uruguay  URY 1983    0
6252        77                       Venezuela  VEN 1983    0
6253        78                      Bangladesh  BGD 1983    0
6254        80                           India  IND 1983    0
6255        81                       Indonesia  IDN 1983    0
6256        82              Iran, Islamic Rep.  IRN 1983    0
6257        83                            Iraq  IRQ 1983    0
6258        84                          Israel  ISR 1983    0
6259        85                           Japan  JPN 1983    0
6260        86                          Jordan  JOR 1983    1
6261        87             Korea, South (Rep.)  KOR 1983    0
6262        88                        Laos PDR  LAO 1983    0
6263        89                        Malaysia  MYS 1983    0
6264        90                        Mongolia  MNG 1983    0
6265        91                         Myanmar  MMR 1983    0
6266        92                           Nepal  NPL 1983    0
6267        93                        Pakistan  PAK 1983    1
6268        94                     Philippines  PHL 1983    0
6269        95                       Singapore  SGP 1983    0
6270        96                       Sri Lanka  LKA 1983    0
6271        97            Syrian Arab Republic  SYR 1983    0
6272        98                          Taiwan    . 1983    0
6273        99                        Thailand  THA 1983    0
6274       100             Yemen Arab Republic    . 1983    0
6275       101                         Austria  AUT 1983    0
6276       102                         Belgium  BEL 1983    0
6277       103                        Bulgaria  BGR 1983    0
6278       104                  Czechoslovakia    . 1983    0
6279       105                         Denmark  DNK 1983    0
6280       106                         Finland  FIN 1983    0
6281       108                   Germany, West    . 1983    0
6282       109                   Germany, East    . 1983    0
6283       110                          Greece  GRC 1983    0
6284       111                         Hungary  HUN 1983    0
6285       112                         Iceland  ISL 1983    0
6286       113                         Ireland  IRL 1983    0
6287       114                           Italy  ITA 1983    0
6288       115                      Luxembourg  LUX 1983    0
6289       116                           Malta  MLT 1983    1
6290       117                     Netherlands  NLD 1983    1
6291       118                          Norway  NOR 1983    0
6292       119                          Poland  POL 1983    1
6293       120                        Portugal  PRT 1983    0
6294       121                         Romania  ROM 1983    0
6295       122                           Spain  ESP 1983    0
6296       123                          Sweden  SWE 1983    0
6297       124                     Switzerland  CHE 1983    0
6298       125                          Turkey  TUR 1983    0
6299       128                      Yugoslavia    . 1983    0
6300       129                       Australia  AUS 1983    0
6301       130                            Fiji  FJI 1983    0
6302       131                     New Zealand  NZL 1983    0
6303       132                Papua New Guinea  PNG 1983    0
6304       133                 Solomon Islands  SLB 1983    0
6305       134                         Vanuatu  VUT 1983    0
6306       135                   Western Samoa  WSM 1983    0
6307       136                         Bahrain  BHR 1983    0
6308       137                          Kuwait  KWT 1983    0
6309       138                            Oman  OMN 1983    0
6310       139                           Qatar  QAT 1983    0
6311       140                    Saudi Arabia  SAU 1983    0
6312       141            United Arab Emirates  ARE 1983    0
6313       142                     Afghanistan  AFG 1983    0
6314       143                         Albania  ALB 1983    0
6315       144                         Antigua  ATG 1983    0
6316       145                         Armenia  ARM 1983    .
6317       146                           Nauru    . 1983    0
6318       147                      Azerbaijan  AZE 1983    .
6319       148                          Bhutan  BTN 1983    0
6320       149                         Belarus  BLR 1983    .
6321       150              Bosnia-Herzegovina  BIH 1983    .
6322       151                          Brunei  BRN 1983    .
6323       152                        Cambodia  KHM 1983    0
6324       153                         Croatia  HRV 1983    .
6325       154                            Cuba  CUB 1983    0
6326       155                  Czech Republic  CZE 1983    .
6327       156                 Slovak Republic  SVK 1983    .
6328       157                        Dominica  DMA 1983    0
6329       158               Equatorial Guinea  GNQ 1983    0
6330       159                         Estonia  EST 1983    .
6331       160                         Eritrea  ERI 1983    .
6332       161                         Georgia  GEO 1983    .
6333       162                      Kazakhstan  KAZ 1983    .
6334       163                        Kiribati  KIR 1983    0
6335       164        Korea, North (Dem. Rep.)  PRK 1983    0
6336       165                      Kyrgyzstan  KGZ 1983    .
6337       166                          Latvia  LVA 1983    .
6338       167                         Lebanon  LBN 1983    0
6339       168                       Lithuania  LTU 1983    .
6340       169                       Macedonia  MKD 1983    .
6341       170                 Maldive Islands  MDV 1983    0
6342       171                         Moldova  MDA 1983    .
6343       172                         Namibia  NAM 1983    .
6344       174                       St. Lucia  LCA 1983    0
6345       175           Sao Tome and Principe  STP 1983    0
6346       176                        Slovenia  SVN 1983    .
6347       177                      Somaliland    . 1983    .
6348       178               Yemen PDR (South)    . 1983    0
6349       179             St. Kitts and Nevis  KNA 1983    0
6350       180                     St. Vincent  VCT 1983    0
6351       181                      Tajikistan  TJK 1983    .
6352       182                    Turkmenistan  TKM 1983    .
6353       183                         Ukraine  UKR 1983    .
6354       184                           Tonga  TON 1983    0
6355       185                      Uzbekistan  UZB 1983    .
6356       186                         Vietnam  VNM 1983    0
6357       187                          Cyprus  CYP 1983    .
6358       188                    Greek Cyprus    . 1983    0
6359       189 Micronesia, Federated States of  FSM 1983    .
6360       190               Republic of Yemen  YEM 1983    .
6361       191                         Germany  DEU 1983    .
6362       192                     Yugoslavia2  YUG 1983    .
6363       193                           Libya  LBY 1983    0
6364       194                       Ethiopia2  ETH 1983    .
6365       195                         Andorra  ADO 1983    .
6366       196                   Liechtenstein  LIE 1983    .
6367       197                Marshall Islands  MHL 1983    .
6368       198                           Palau  PLW 1983    .
6369       199                      San Marino  SMR 1983    .
6370         1                         Algeria  DZA 1984    0
6371         2                          Angola  AGO 1984    0
6372         3                           Benin  BEN 1984    0
6373         4                        Botswana  BWA 1984    0
6374         5                    Burkina Faso  BFA 1984    1
6375         6                         Burundi  BDI 1984    0
6376         7                        Cameroon  CMR 1984    0
6377         8                      Cape Verde  CPV 1984    0
6378         9        Central African Republic  CAF 1984    0
6379        10                            Chad  TCD 1984    0
6380        11                         Comoros  COM 1984    0
6381        12                           Congo  COG 1984    0
6382        13                        Djibouti  DJI 1984    0
6383        14                Egypt, Arab Rep.  EGY 1984    1
6384        15                        Ethiopia    . 1984    0
6385        16                           Gabon  GAB 1984    0
6386        17                     Gambia, The  GMB 1984    0
6387        18                           Ghana  GHA 1984    0
6388        19                          Guinea  GIN 1984    0
6389        20                   Guinea-Bissau  GNB 1984    0
6390        21                   Cote d'Ivoire  CIV 1984    0
6391        22                           Kenya  KEN 1984    0
6392        23                         Lesotho  LSO 1984    0
6393        24                         Liberia  LBR 1984    0
6394        25                      Madagascar  MDG 1984    0
6395        26                          Malawi  MWI 1984    0
6396        27                            Mali  MLI 1984    0
6397        28                      Mauritania  MRT 1984    0
6398        29                       Mauritius  MUS 1984    0
6399        30                         Morocco  MAR 1984    0
6400        31                      Mozambique  MOZ 1984    0
6401        32                           Niger  NER 1984    0
6402        33                         Nigeria  NGA 1984    0
6403        34                          Rwanda  RWA 1984    0
6404        35                         Senegal  SEN 1984    0
6405        36                      Seychelles  SYC 1984    0
6406        37                    Sierra Leone  SLE 1984    0
6407        38                         Somalia  SOM 1984    0
6408        39                    South Africa  ZAF 1984    0
6409        40                           Sudan  SDN 1984    0
6410        41                       Swaziland  SWZ 1984    0
6411        42                        Tanzania  TZA 1984    0
6412        43                            Togo  TGO 1984    0
6413        44                         Tunisia  TUN 1984    0
6414        45                          Uganda  UGA 1984    0
6415        46                           Zaire  ZAR 1984    0
6416        47                          Zambia  ZMB 1984    0
6417        48                        Zimbabwe  ZWE 1984    1
6418        49                    Bahamas, The  BHS 1984    0
6419        50                        Barbados  BRB 1984    0
6420        51                          Belize  BLZ 1984    0
6421        52                          Canada  CAN 1984    0
6422        53                      Costa Rica  CRI 1984    0
6423        54              Dominican Republic  DOM 1984    0
6424        55                     El Salvador  SLV 1984    0
6425        56                         Grenada  GRD 1984    0
6426        57                       Guatemala  GTM 1984    0
6427        58                           Haiti  HTI 1984    0
6428        59                        Honduras  HND 1984    0
6429        60                         Jamaica  JAM 1984    0
6430        61                          Mexico  MEX 1984    0
6431        62                       Nicaragua  NIC 1984    1
6432        63                          Panama  PAN 1984    0
6433        64             Trinidad and Tobago  TTO 1984    0
6434        66                       Argentina  ARG 1984    0
6435        67                         Bolivia  BOL 1984    0
6436        68                          Brazil  BRA 1984    0
6437        69                           Chile  CHL 1984    0
6438        70                        Colombia  COL 1984    0
6439        71                         Ecuador  ECU 1984    0
6440        72                          Guyana  GUY 1984    0
6441        73                        Paraguay  PRY 1984    0
6442        74                            Peru  PER 1984    1
6443        75                        Suriname  SUR 1984    0
6444        76                         Uruguay  URY 1984    0
6445        77                       Venezuela  VEN 1984    0
6446        78                      Bangladesh  BGD 1984    0
6447        80                           India  IND 1984    1
6448        81                       Indonesia  IDN 1984    0
6449        82              Iran, Islamic Rep.  IRN 1984    0
6450        83                            Iraq  IRQ 1984    0
6451        84                          Israel  ISR 1984    0
6452        85                           Japan  JPN 1984    0
6453        86                          Jordan  JOR 1984    0
6454        87             Korea, South (Rep.)  KOR 1984    0
6455        88                        Laos PDR  LAO 1984    0
6456        89                        Malaysia  MYS 1984    0
6457        90                        Mongolia  MNG 1984    0
6458        91                         Myanmar  MMR 1984    0
6459        92                           Nepal  NPL 1984    0
6460        93                        Pakistan  PAK 1984    1
6461        94                     Philippines  PHL 1984    0
6462        95                       Singapore  SGP 1984    0
6463        96                       Sri Lanka  LKA 1984    0
6464        97            Syrian Arab Republic  SYR 1984    0
6465        98                          Taiwan    . 1984    0
6466        99                        Thailand  THA 1984    0
6467       100             Yemen Arab Republic    . 1984    0
6468       101                         Austria  AUT 1984    0
6469       102                         Belgium  BEL 1984    0
6470       103                        Bulgaria  BGR 1984    0
6471       104                  Czechoslovakia    . 1984    0
6472       105                         Denmark  DNK 1984    0
6473       106                         Finland  FIN 1984    0
6474       108                   Germany, West    . 1984    0
6475       109                   Germany, East    . 1984    0
6476       110                          Greece  GRC 1984    0
6477       111                         Hungary  HUN 1984    0
6478       112                         Iceland  ISL 1984    0
6479       113                         Ireland  IRL 1984    0
6480       114                           Italy  ITA 1984    0
6481       115                      Luxembourg  LUX 1984    0
6482       116                           Malta  MLT 1984    1
6483       117                     Netherlands  NLD 1984    1
6484       118                          Norway  NOR 1984    0
6485       119                          Poland  POL 1984    0
6486       120                        Portugal  PRT 1984    0
6487       121                         Romania  ROM 1984    0
6488       122                           Spain  ESP 1984    0
6489       123                          Sweden  SWE 1984    0
6490       124                     Switzerland  CHE 1984    0
6491       125                          Turkey  TUR 1984    0
6492       128                      Yugoslavia    . 1984    0
6493       129                       Australia  AUS 1984    0
6494       130                            Fiji  FJI 1984    0
6495       131                     New Zealand  NZL 1984    0
6496       132                Papua New Guinea  PNG 1984    0
6497       133                 Solomon Islands  SLB 1984    0
6498       134                         Vanuatu  VUT 1984    0
6499       135                   Western Samoa  WSM 1984    0
6500       136                         Bahrain  BHR 1984    0
6501       137                          Kuwait  KWT 1984    0
6502       138                            Oman  OMN 1984    0
6503       139                           Qatar  QAT 1984    0
6504       140                    Saudi Arabia  SAU 1984    0
6505       141            United Arab Emirates  ARE 1984    0
6506       142                     Afghanistan  AFG 1984    0
6507       143                         Albania  ALB 1984    0
6508       144                         Antigua  ATG 1984    0
6509       145                         Armenia  ARM 1984    .
6510       146                           Nauru    . 1984    0
6511       147                      Azerbaijan  AZE 1984    .
6512       148                          Bhutan  BTN 1984    0
6513       149                         Belarus  BLR 1984    .
6514       150              Bosnia-Herzegovina  BIH 1984    .
6515       151                          Brunei  BRN 1984    0
6516       152                        Cambodia  KHM 1984    0
6517       153                         Croatia  HRV 1984    .
6518       154                            Cuba  CUB 1984    0
6519       155                  Czech Republic  CZE 1984    .
6520       156                 Slovak Republic  SVK 1984    .
6521       157                        Dominica  DMA 1984    0
6522       158               Equatorial Guinea  GNQ 1984    0
6523       159                         Estonia  EST 1984    .
6524       160                         Eritrea  ERI 1984    .
6525       161                         Georgia  GEO 1984    .
6526       162                      Kazakhstan  KAZ 1984    .
6527       163                        Kiribati  KIR 1984    0
6528       164        Korea, North (Dem. Rep.)  PRK 1984    0
6529       165                      Kyrgyzstan  KGZ 1984    .
6530       166                          Latvia  LVA 1984    .
6531       167                         Lebanon  LBN 1984    0
6532       168                       Lithuania  LTU 1984    .
6533       169                       Macedonia  MKD 1984    .
6534       170                 Maldive Islands  MDV 1984    0
6535       171                         Moldova  MDA 1984    .
6536       172                         Namibia  NAM 1984    .
6537       174                       St. Lucia  LCA 1984    0
6538       175           Sao Tome and Principe  STP 1984    0
6539       176                        Slovenia  SVN 1984    .
6540       177                      Somaliland    . 1984    .
6541       178               Yemen PDR (South)    . 1984    0
6542       179             St. Kitts and Nevis  KNA 1984    0
6543       180                     St. Vincent  VCT 1984    0
6544       181                      Tajikistan  TJK 1984    .
6545       182                    Turkmenistan  TKM 1984    .
6546       183                         Ukraine  UKR 1984    .
6547       184                           Tonga  TON 1984    0
6548       185                      Uzbekistan  UZB 1984    .
6549       186                         Vietnam  VNM 1984    0
6550       187                          Cyprus  CYP 1984    .
6551       188                    Greek Cyprus    . 1984    0
6552       189 Micronesia, Federated States of  FSM 1984    .
6553       190               Republic of Yemen  YEM 1984    .
6554       191                         Germany  DEU 1984    .
6555       192                     Yugoslavia2  YUG 1984    .
6556       193                           Libya  LBY 1984    0
6557       194                       Ethiopia2  ETH 1984    .
6558       195                         Andorra  ADO 1984    .
6559       196                   Liechtenstein  LIE 1984    .
6560       197                Marshall Islands  MHL 1984    .
6561       198                           Palau  PLW 1984    .
6562       199                      San Marino  SMR 1984    .
6563         1                         Algeria  DZA 1985    0
6564         2                          Angola  AGO 1985    0
6565         3                           Benin  BEN 1985    0
6566         4                        Botswana  BWA 1985    0
6567         5                    Burkina Faso  BFA 1985    1
6568         6                         Burundi  BDI 1985    0
6569         7                        Cameroon  CMR 1985    0
6570         8                      Cape Verde  CPV 1985    0
6571         9        Central African Republic  CAF 1985    0
6572        10                            Chad  TCD 1985    0
6573        11                         Comoros  COM 1985    0
6574        12                           Congo  COG 1985    0
6575        13                        Djibouti  DJI 1985    0
6576        14                Egypt, Arab Rep.  EGY 1985    1
6577        15                        Ethiopia    . 1985    0
6578        16                           Gabon  GAB 1985    0
6579        17                     Gambia, The  GMB 1985    0
6580        18                           Ghana  GHA 1985    0
6581        19                          Guinea  GIN 1985    0
6582        20                   Guinea-Bissau  GNB 1985    0
6583        21                   Cote d'Ivoire  CIV 1985    0
6584        22                           Kenya  KEN 1985    0
6585        23                         Lesotho  LSO 1985    0
6586        24                         Liberia  LBR 1985    0
6587        25                      Madagascar  MDG 1985    1
6588        26                          Malawi  MWI 1985    0
6589        27                            Mali  MLI 1985    0
6590        28                      Mauritania  MRT 1985    0
6591        29                       Mauritius  MUS 1985    0
6592        30                         Morocco  MAR 1985    0
6593        31                      Mozambique  MOZ 1985    0
6594        32                           Niger  NER 1985    0
6595        33                         Nigeria  NGA 1985    0
6596        34                          Rwanda  RWA 1985    0
6597        35                         Senegal  SEN 1985    0
6598        36                      Seychelles  SYC 1985    0
6599        37                    Sierra Leone  SLE 1985    0
6600        38                         Somalia  SOM 1985    0
6601        39                    South Africa  ZAF 1985    0
6602        40                           Sudan  SDN 1985    0
6603        41                       Swaziland  SWZ 1985    0
6604        42                        Tanzania  TZA 1985    0
6605        43                            Togo  TGO 1985    0
6606        44                         Tunisia  TUN 1985    0
6607        45                          Uganda  UGA 1985    0
6608        46                           Zaire  ZAR 1985    0
6609        47                          Zambia  ZMB 1985    0
6610        48                        Zimbabwe  ZWE 1985    0
6611        49                    Bahamas, The  BHS 1985    0
6612        50                        Barbados  BRB 1985    0
6613        51                          Belize  BLZ 1985    0
6614        52                          Canada  CAN 1985    0
6615        53                      Costa Rica  CRI 1985    0
6616        54              Dominican Republic  DOM 1985    0
6617        55                     El Salvador  SLV 1985    0
6618        56                         Grenada  GRD 1985    0
6619        57                       Guatemala  GTM 1985    0
6620        58                           Haiti  HTI 1985    0
6621        59                        Honduras  HND 1985    0
6622        60                         Jamaica  JAM 1985    0
6623        61                          Mexico  MEX 1985    0
6624        62                       Nicaragua  NIC 1985    0
6625        63                          Panama  PAN 1985    0
6626        64             Trinidad and Tobago  TTO 1985    1
6627        66                       Argentina  ARG 1985    0
6628        67                         Bolivia  BOL 1985    0
6629        68                          Brazil  BRA 1985    0
6630        69                           Chile  CHL 1985    0
6631        70                        Colombia  COL 1985    0
6632        71                         Ecuador  ECU 1985    0
6633        72                          Guyana  GUY 1985    0
6634        73                        Paraguay  PRY 1985    0
6635        74                            Peru  PER 1985    1
6636        75                        Suriname  SUR 1985    0
6637        76                         Uruguay  URY 1985    0
6638        77                       Venezuela  VEN 1985    0
6639        78                      Bangladesh  BGD 1985    0
6640        80                           India  IND 1985    1
6641        81                       Indonesia  IDN 1985    0
6642        82              Iran, Islamic Rep.  IRN 1985    0
6643        83                            Iraq  IRQ 1985    0
6644        84                          Israel  ISR 1985    0
6645        85                           Japan  JPN 1985    0
6646        86                          Jordan  JOR 1985    0
6647        87             Korea, South (Rep.)  KOR 1985    0
6648        88                        Laos PDR  LAO 1985    0
6649        89                        Malaysia  MYS 1985    0
6650        90                        Mongolia  MNG 1985    0
6651        91                         Myanmar  MMR 1985    0
6652        92                           Nepal  NPL 1985    0
6653        93                        Pakistan  PAK 1985    0
6654        94                     Philippines  PHL 1985    0
6655        95                       Singapore  SGP 1985    0
6656        96                       Sri Lanka  LKA 1985    0
6657        97            Syrian Arab Republic  SYR 1985    0
6658        98                          Taiwan    . 1985    0
6659        99                        Thailand  THA 1985    1
6660       100             Yemen Arab Republic    . 1985    0
6661       101                         Austria  AUT 1985    0
6662       102                         Belgium  BEL 1985    0
6663       103                        Bulgaria  BGR 1985    0
6664       104                  Czechoslovakia    . 1985    0
6665       105                         Denmark  DNK 1985    1
6666       106                         Finland  FIN 1985    0
6667       108                   Germany, West    . 1985    0
6668       109                   Germany, East    . 1985    0
6669       110                          Greece  GRC 1985    0
6670       111                         Hungary  HUN 1985    0
6671       112                         Iceland  ISL 1985    0
6672       113                         Ireland  IRL 1985    0
6673       114                           Italy  ITA 1985    0
6674       115                      Luxembourg  LUX 1985    0
6675       116                           Malta  MLT 1985    0
6676       117                     Netherlands  NLD 1985    0
6677       118                          Norway  NOR 1985    0
6678       119                          Poland  POL 1985    0
6679       120                        Portugal  PRT 1985    0
6680       121                         Romania  ROM 1985    0
6681       122                           Spain  ESP 1985    0
6682       123                          Sweden  SWE 1985    0
6683       124                     Switzerland  CHE 1985    0
6684       125                          Turkey  TUR 1985    0
6685       128                      Yugoslavia    . 1985    0
6686       129                       Australia  AUS 1985    1
6687       130                            Fiji  FJI 1985    0
6688       131                     New Zealand  NZL 1985    0
6689       132                Papua New Guinea  PNG 1985    0
6690       133                 Solomon Islands  SLB 1985    0
6691       134                         Vanuatu  VUT 1985    0
6692       135                   Western Samoa  WSM 1985    0
6693       136                         Bahrain  BHR 1985    0
6694       137                          Kuwait  KWT 1985    0
6695       138                            Oman  OMN 1985    0
6696       139                           Qatar  QAT 1985    0
6697       140                    Saudi Arabia  SAU 1985    0
6698       141            United Arab Emirates  ARE 1985    0
6699       142                     Afghanistan  AFG 1985    0
6700       143                         Albania  ALB 1985    0
6701       144                         Antigua  ATG 1985    0
6702       145                         Armenia  ARM 1985    .
6703       146                           Nauru    . 1985    0
6704       147                      Azerbaijan  AZE 1985    .
6705       148                          Bhutan  BTN 1985    0
6706       149                         Belarus  BLR 1985    .
6707       150              Bosnia-Herzegovina  BIH 1985    .
6708       151                          Brunei  BRN 1985    0
6709       152                        Cambodia  KHM 1985    0
6710       153                         Croatia  HRV 1985    .
6711       154                            Cuba  CUB 1985    0
6712       155                  Czech Republic  CZE 1985    .
6713       156                 Slovak Republic  SVK 1985    .
6714       157                        Dominica  DMA 1985    0
6715       158               Equatorial Guinea  GNQ 1985    0
6716       159                         Estonia  EST 1985    .
6717       160                         Eritrea  ERI 1985    .
6718       161                         Georgia  GEO 1985    .
6719       162                      Kazakhstan  KAZ 1985    .
6720       163                        Kiribati  KIR 1985    0
6721       164        Korea, North (Dem. Rep.)  PRK 1985    0
6722       165                      Kyrgyzstan  KGZ 1985    .
6723       166                          Latvia  LVA 1985    .
6724       167                         Lebanon  LBN 1985    0
6725       168                       Lithuania  LTU 1985    .
6726       169                       Macedonia  MKD 1985    .
6727       170                 Maldive Islands  MDV 1985    0
6728       171                         Moldova  MDA 1985    .
6729       172                         Namibia  NAM 1985    .
6730       174                       St. Lucia  LCA 1985    0
6731       175           Sao Tome and Principe  STP 1985    0
6732       176                        Slovenia  SVN 1985    .
6733       177                      Somaliland    . 1985    .
6734       178               Yemen PDR (South)    . 1985    0
6735       179             St. Kitts and Nevis  KNA 1985    0
6736       180                     St. Vincent  VCT 1985    0
6737       181                      Tajikistan  TJK 1985    .
6738       182                    Turkmenistan  TKM 1985    .
6739       183                         Ukraine  UKR 1985    .
6740       184                           Tonga  TON 1985    0
6741       185                      Uzbekistan  UZB 1985    .
6742       186                         Vietnam  VNM 1985    0
6743       187                          Cyprus  CYP 1985    .
6744       188                    Greek Cyprus    . 1985    0
6745       189 Micronesia, Federated States of  FSM 1985    .
6746       190               Republic of Yemen  YEM 1985    .
6747       191                         Germany  DEU 1985    .
6748       192                     Yugoslavia2  YUG 1985    .
6749       193                           Libya  LBY 1985    0
6750       194                       Ethiopia2  ETH 1985    .
6751       195                         Andorra  ADO 1985    .
6752       196                   Liechtenstein  LIE 1985    .
6753       197                Marshall Islands  MHL 1985    .
6754       198                           Palau  PLW 1985    .
6755       199                      San Marino  SMR 1985    .
6756         1                         Algeria  DZA 1986    0
6757         2                          Angola  AGO 1986    0
6758         3                           Benin  BEN 1986    0
6759         4                        Botswana  BWA 1986    0
6760         5                    Burkina Faso  BFA 1986    0
6761         6                         Burundi  BDI 1986    0
6762         7                        Cameroon  CMR 1986    0
6763         8                      Cape Verde  CPV 1986    0
6764         9        Central African Republic  CAF 1986    0
6765        10                            Chad  TCD 1986    0
6766        11                         Comoros  COM 1986    0
6767        12                           Congo  COG 1986    1
6768        13                        Djibouti  DJI 1986    0
6769        14                Egypt, Arab Rep.  EGY 1986    0
6770        15                        Ethiopia    . 1986    0
6771        16                           Gabon  GAB 1986    0
6772        17                     Gambia, The  GMB 1986    0
6773        18                           Ghana  GHA 1986    1
6774        19                          Guinea  GIN 1986    0
6775        20                   Guinea-Bissau  GNB 1986    0
6776        21                   Cote d'Ivoire  CIV 1986    0
6777        22                           Kenya  KEN 1986    0
6778        23                         Lesotho  LSO 1986    0
6779        24                         Liberia  LBR 1986    0
6780        25                      Madagascar  MDG 1986    1
6781        26                          Malawi  MWI 1986    0
6782        27                            Mali  MLI 1986    0
6783        28                      Mauritania  MRT 1986    0
6784        29                       Mauritius  MUS 1986    0
6785        30                         Morocco  MAR 1986    0
6786        31                      Mozambique  MOZ 1986    0
6787        32                           Niger  NER 1986    0
6788        33                         Nigeria  NGA 1986    0
6789        34                          Rwanda  RWA 1986    0
6790        35                         Senegal  SEN 1986    0
6791        36                      Seychelles  SYC 1986    0
6792        37                    Sierra Leone  SLE 1986    0
6793        38                         Somalia  SOM 1986    0
6794        39                    South Africa  ZAF 1986    0
6795        40                           Sudan  SDN 1986    0
6796        41                       Swaziland  SWZ 1986    0
6797        42                        Tanzania  TZA 1986    0
6798        43                            Togo  TGO 1986    0
6799        44                         Tunisia  TUN 1986    0
6800        45                          Uganda  UGA 1986    0
6801        46                           Zaire  ZAR 1986    0
6802        47                          Zambia  ZMB 1986    0
6803        48                        Zimbabwe  ZWE 1986    0
6804        49                    Bahamas, The  BHS 1986    0
6805        50                        Barbados  BRB 1986    0
6806        51                          Belize  BLZ 1986    0
6807        52                          Canada  CAN 1986    0
6808        53                      Costa Rica  CRI 1986    0
6809        54              Dominican Republic  DOM 1986    0
6810        55                     El Salvador  SLV 1986    0
6811        56                         Grenada  GRD 1986    0
6812        57                       Guatemala  GTM 1986    0
6813        58                           Haiti  HTI 1986    0
6814        59                        Honduras  HND 1986    0
6815        60                         Jamaica  JAM 1986    0
6816        61                          Mexico  MEX 1986    0
6817        62                       Nicaragua  NIC 1986    0
6818        63                          Panama  PAN 1986    0
6819        64             Trinidad and Tobago  TTO 1986    1
6820        66                       Argentina  ARG 1986    0
6821        67                         Bolivia  BOL 1986    0
6822        68                          Brazil  BRA 1986    0
6823        69                           Chile  CHL 1986    0
6824        70                        Colombia  COL 1986    0
6825        71                         Ecuador  ECU 1986    0
6826        72                          Guyana  GUY 1986    0
6827        73                        Paraguay  PRY 1986    0
6828        74                            Peru  PER 1986    0
6829        75                        Suriname  SUR 1986    0
6830        76                         Uruguay  URY 1986    0
6831        77                       Venezuela  VEN 1986    1
6832        78                      Bangladesh  BGD 1986    0
6833        80                           India  IND 1986    0
6834        81                       Indonesia  IDN 1986    0
6835        82              Iran, Islamic Rep.  IRN 1986    0
6836        83                            Iraq  IRQ 1986    0
6837        84                          Israel  ISR 1986    0
6838        85                           Japan  JPN 1986    0
6839        86                          Jordan  JOR 1986    0
6840        87             Korea, South (Rep.)  KOR 1986    0
6841        88                        Laos PDR  LAO 1986    0
6842        89                        Malaysia  MYS 1986    0
6843        90                        Mongolia  MNG 1986    0
6844        91                         Myanmar  MMR 1986    0
6845        92                           Nepal  NPL 1986    0
6846        93                        Pakistan  PAK 1986    0
6847        94                     Philippines  PHL 1986    0
6848        95                       Singapore  SGP 1986    0
6849        96                       Sri Lanka  LKA 1986    0
6850        97            Syrian Arab Republic  SYR 1986    0
6851        98                          Taiwan    . 1986    0
6852        99                        Thailand  THA 1986    1
6853       100             Yemen Arab Republic    . 1986    0
6854       101                         Austria  AUT 1986    0
6855       102                         Belgium  BEL 1986    0
6856       103                        Bulgaria  BGR 1986    1
6857       104                  Czechoslovakia    . 1986    0
6858       105                         Denmark  DNK 1986    1
6859       106                         Finland  FIN 1986    0
6860       108                   Germany, West    . 1986    0
6861       109                   Germany, East    . 1986    0
6862       110                          Greece  GRC 1986    0
6863       111                         Hungary  HUN 1986    0
6864       112                         Iceland  ISL 1986    0
6865       113                         Ireland  IRL 1986    0
6866       114                           Italy  ITA 1986    0
6867       115                      Luxembourg  LUX 1986    0
6868       116                           Malta  MLT 1986    0
6869       117                     Netherlands  NLD 1986    0
6870       118                          Norway  NOR 1986    0
6871       119                          Poland  POL 1986    0
6872       120                        Portugal  PRT 1986    0
6873       121                         Romania  ROM 1986    0
6874       122                           Spain  ESP 1986    0
6875       123                          Sweden  SWE 1986    0
6876       124                     Switzerland  CHE 1986    0
6877       125                          Turkey  TUR 1986    0
6878       128                      Yugoslavia    . 1986    0
6879       129                       Australia  AUS 1986    1
6880       130                            Fiji  FJI 1986    0
6881       131                     New Zealand  NZL 1986    0
6882       132                Papua New Guinea  PNG 1986    0
6883       133                 Solomon Islands  SLB 1986    0
6884       134                         Vanuatu  VUT 1986    0
6885       135                   Western Samoa  WSM 1986    0
6886       136                         Bahrain  BHR 1986    0
6887       137                          Kuwait  KWT 1986    0
6888       138                            Oman  OMN 1986    0
6889       139                           Qatar  QAT 1986    0
6890       140                    Saudi Arabia  SAU 1986    0
6891       141            United Arab Emirates  ARE 1986    1
6892       142                     Afghanistan  AFG 1986    0
6893       143                         Albania  ALB 1986    0
6894       144                         Antigua  ATG 1986    0
6895       145                         Armenia  ARM 1986    .
6896       146                           Nauru    . 1986    0
6897       147                      Azerbaijan  AZE 1986    .
6898       148                          Bhutan  BTN 1986    0
6899       149                         Belarus  BLR 1986    .
6900       150              Bosnia-Herzegovina  BIH 1986    .
6901       151                          Brunei  BRN 1986    0
6902       152                        Cambodia  KHM 1986    0
6903       153                         Croatia  HRV 1986    .
6904       154                            Cuba  CUB 1986    0
6905       155                  Czech Republic  CZE 1986    .
6906       156                 Slovak Republic  SVK 1986    .
6907       157                        Dominica  DMA 1986    0
6908       158               Equatorial Guinea  GNQ 1986    0
6909       159                         Estonia  EST 1986    .
6910       160                         Eritrea  ERI 1986    .
6911       161                         Georgia  GEO 1986    .
6912       162                      Kazakhstan  KAZ 1986    .
6913       163                        Kiribati  KIR 1986    0
6914       164        Korea, North (Dem. Rep.)  PRK 1986    0
6915       165                      Kyrgyzstan  KGZ 1986    .
6916       166                          Latvia  LVA 1986    .
6917       167                         Lebanon  LBN 1986    0
6918       168                       Lithuania  LTU 1986    .
6919       169                       Macedonia  MKD 1986    .
6920       170                 Maldive Islands  MDV 1986    0
6921       171                         Moldova  MDA 1986    .
6922       172                         Namibia  NAM 1986    .
6923       174                       St. Lucia  LCA 1986    0
6924       175           Sao Tome and Principe  STP 1986    0
6925       176                        Slovenia  SVN 1986    .
6926       177                      Somaliland    . 1986    .
6927       178               Yemen PDR (South)    . 1986    0
6928       179             St. Kitts and Nevis  KNA 1986    0
6929       180                     St. Vincent  VCT 1986    0
6930       181                      Tajikistan  TJK 1986    .
6931       182                    Turkmenistan  TKM 1986    .
6932       183                         Ukraine  UKR 1986    .
6933       184                           Tonga  TON 1986    0
6934       185                      Uzbekistan  UZB 1986    .
6935       186                         Vietnam  VNM 1986    0
6936       187                          Cyprus  CYP 1986    .
6937       188                    Greek Cyprus    . 1986    0
6938       189 Micronesia, Federated States of  FSM 1986    .
6939       190               Republic of Yemen  YEM 1986    .
6940       191                         Germany  DEU 1986    .
6941       192                     Yugoslavia2  YUG 1986    .
6942       193                           Libya  LBY 1986    0
6943       194                       Ethiopia2  ETH 1986    .
6944       195                         Andorra  ADO 1986    .
6945       196                   Liechtenstein  LIE 1986    .
6946       197                Marshall Islands  MHL 1986    .
6947       198                           Palau  PLW 1986    .
6948       199                      San Marino  SMR 1986    .
6949         1                         Algeria  DZA 1987    0
6950         2                          Angola  AGO 1987    0
6951         3                           Benin  BEN 1987    0
6952         4                        Botswana  BWA 1987    0
6953         5                    Burkina Faso  BFA 1987    0
6954         6                         Burundi  BDI 1987    0
6955         7                        Cameroon  CMR 1987    0
6956         8                      Cape Verde  CPV 1987    0
6957         9        Central African Republic  CAF 1987    0
6958        10                            Chad  TCD 1987    0
6959        11                         Comoros  COM 1987    0
6960        12                           Congo  COG 1987    1
6961        13                        Djibouti  DJI 1987    0
6962        14                Egypt, Arab Rep.  EGY 1987    0
6963        15                        Ethiopia    . 1987    0
6964        16                           Gabon  GAB 1987    0
6965        17                     Gambia, The  GMB 1987    0
6966        18                           Ghana  GHA 1987    1
6967        19                          Guinea  GIN 1987    0
6968        20                   Guinea-Bissau  GNB 1987    0
6969        21                   Cote d'Ivoire  CIV 1987    0
6970        22                           Kenya  KEN 1987    0
6971        23                         Lesotho  LSO 1987    0
6972        24                         Liberia  LBR 1987    0
6973        25                      Madagascar  MDG 1987    0
6974        26                          Malawi  MWI 1987    0
6975        27                            Mali  MLI 1987    0
6976        28                      Mauritania  MRT 1987    0
6977        29                       Mauritius  MUS 1987    0
6978        30                         Morocco  MAR 1987    0
6979        31                      Mozambique  MOZ 1987    0
6980        32                           Niger  NER 1987    0
6981        33                         Nigeria  NGA 1987    0
6982        34                          Rwanda  RWA 1987    0
6983        35                         Senegal  SEN 1987    0
6984        36                      Seychelles  SYC 1987    0
6985        37                    Sierra Leone  SLE 1987    0
6986        38                         Somalia  SOM 1987    0
6987        39                    South Africa  ZAF 1987    0
6988        40                           Sudan  SDN 1987    0
6989        41                       Swaziland  SWZ 1987    0
6990        42                        Tanzania  TZA 1987    0
6991        43                            Togo  TGO 1987    0
6992        44                         Tunisia  TUN 1987    0
6993        45                          Uganda  UGA 1987    0
6994        46                           Zaire  ZAR 1987    0
6995        47                          Zambia  ZMB 1987    1
6996        48                        Zimbabwe  ZWE 1987    0
6997        49                    Bahamas, The  BHS 1987    0
6998        50                        Barbados  BRB 1987    0
6999        51                          Belize  BLZ 1987    0
7000        52                          Canada  CAN 1987    0
7001        53                      Costa Rica  CRI 1987    0
7002        54              Dominican Republic  DOM 1987    0
7003        55                     El Salvador  SLV 1987    0
7004        56                         Grenada  GRD 1987    0
7005        57                       Guatemala  GTM 1987    0
7006        58                           Haiti  HTI 1987    0
7007        59                        Honduras  HND 1987    0
7008        60                         Jamaica  JAM 1987    0
7009        61                          Mexico  MEX 1987    0
7010        62                       Nicaragua  NIC 1987    0
7011        63                          Panama  PAN 1987    0
7012        64             Trinidad and Tobago  TTO 1987    0
7013        66                       Argentina  ARG 1987    1
7014        67                         Bolivia  BOL 1987    0
7015        68                          Brazil  BRA 1987    0
7016        69                           Chile  CHL 1987    0
7017        70                        Colombia  COL 1987    0
7018        71                         Ecuador  ECU 1987    0
7019        72                          Guyana  GUY 1987    0
7020        73                        Paraguay  PRY 1987    0
7021        74                            Peru  PER 1987    0
7022        75                        Suriname  SUR 1987    0
7023        76                         Uruguay  URY 1987    0
7024        77                       Venezuela  VEN 1987    1
7025        78                      Bangladesh  BGD 1987    0
7026        80                           India  IND 1987    0
7027        81                       Indonesia  IDN 1987    0
7028        82              Iran, Islamic Rep.  IRN 1987    0
7029        83                            Iraq  IRQ 1987    0
7030        84                          Israel  ISR 1987    0
7031        85                           Japan  JPN 1987    1
7032        86                          Jordan  JOR 1987    0
7033        87             Korea, South (Rep.)  KOR 1987    0
7034        88                        Laos PDR  LAO 1987    0
7035        89                        Malaysia  MYS 1987    0
7036        90                        Mongolia  MNG 1987    0
7037        91                         Myanmar  MMR 1987    0
7038        92                           Nepal  NPL 1987    0
7039        93                        Pakistan  PAK 1987    0
7040        94                     Philippines  PHL 1987    0
7041        95                       Singapore  SGP 1987    0
7042        96                       Sri Lanka  LKA 1987    0
7043        97            Syrian Arab Republic  SYR 1987    0
7044        98                          Taiwan    . 1987    0
7045        99                        Thailand  THA 1987    0
7046       100             Yemen Arab Republic    . 1987    0
7047       101                         Austria  AUT 1987    0
7048       102                         Belgium  BEL 1987    0
7049       103                        Bulgaria  BGR 1987    1
7050       104                  Czechoslovakia    . 1987    0
7051       105                         Denmark  DNK 1987    0
7052       106                         Finland  FIN 1987    0
7053       108                   Germany, West    . 1987    1
7054       109                   Germany, East    . 1987    0
7055       110                          Greece  GRC 1987    0
7056       111                         Hungary  HUN 1987    0
7057       112                         Iceland  ISL 1987    0
7058       113                         Ireland  IRL 1987    0
7059       114                           Italy  ITA 1987    1
7060       115                      Luxembourg  LUX 1987    0
7061       116                           Malta  MLT 1987    0
7062       117                     Netherlands  NLD 1987    0
7063       118                          Norway  NOR 1987    0
7064       119                          Poland  POL 1987    0
7065       120                        Portugal  PRT 1987    0
7066       121                         Romania  ROM 1987    0
7067       122                           Spain  ESP 1987    0
7068       123                          Sweden  SWE 1987    0
7069       124                     Switzerland  CHE 1987    0
7070       125                          Turkey  TUR 1987    0
7071       128                      Yugoslavia    . 1987    0
7072       129                       Australia  AUS 1987    0
7073       130                            Fiji  FJI 1987    0
7074       131                     New Zealand  NZL 1987    0
7075       132                Papua New Guinea  PNG 1987    0
7076       133                 Solomon Islands  SLB 1987    0
7077       134                         Vanuatu  VUT 1987    0
7078       135                   Western Samoa  WSM 1987    0
7079       136                         Bahrain  BHR 1987    0
7080       137                          Kuwait  KWT 1987    0
7081       138                            Oman  OMN 1987    0
7082       139                           Qatar  QAT 1987    0
7083       140                    Saudi Arabia  SAU 1987    0
7084       141            United Arab Emirates  ARE 1987    1
7085       142                     Afghanistan  AFG 1987    0
7086       143                         Albania  ALB 1987    0
7087       144                         Antigua  ATG 1987    0
7088       145                         Armenia  ARM 1987    .
7089       146                           Nauru    . 1987    0
7090       147                      Azerbaijan  AZE 1987    .
7091       148                          Bhutan  BTN 1987    0
7092       149                         Belarus  BLR 1987    .
7093       150              Bosnia-Herzegovina  BIH 1987    .
7094       151                          Brunei  BRN 1987    0
7095       152                        Cambodia  KHM 1987    0
7096       153                         Croatia  HRV 1987    .
7097       154                            Cuba  CUB 1987    0
7098       155                  Czech Republic  CZE 1987    .
7099       156                 Slovak Republic  SVK 1987    .
7100       157                        Dominica  DMA 1987    0
7101       158               Equatorial Guinea  GNQ 1987    0
7102       159                         Estonia  EST 1987    .
7103       160                         Eritrea  ERI 1987    .
7104       161                         Georgia  GEO 1987    .
7105       162                      Kazakhstan  KAZ 1987    .
7106       163                        Kiribati  KIR 1987    0
7107       164        Korea, North (Dem. Rep.)  PRK 1987    0
7108       165                      Kyrgyzstan  KGZ 1987    .
7109       166                          Latvia  LVA 1987    .
7110       167                         Lebanon  LBN 1987    0
7111       168                       Lithuania  LTU 1987    .
7112       169                       Macedonia  MKD 1987    .
7113       170                 Maldive Islands  MDV 1987    0
7114       171                         Moldova  MDA 1987    .
7115       172                         Namibia  NAM 1987    .
7116       174                       St. Lucia  LCA 1987    0
7117       175           Sao Tome and Principe  STP 1987    0
7118       176                        Slovenia  SVN 1987    .
7119       177                      Somaliland    . 1987    .
7120       178               Yemen PDR (South)    . 1987    0
7121       179             St. Kitts and Nevis  KNA 1987    0
7122       180                     St. Vincent  VCT 1987    0
7123       181                      Tajikistan  TJK 1987    .
7124       182                    Turkmenistan  TKM 1987    .
7125       183                         Ukraine  UKR 1987    .
7126       184                           Tonga  TON 1987    0
7127       185                      Uzbekistan  UZB 1987    .
7128       186                         Vietnam  VNM 1987    0
7129       187                          Cyprus  CYP 1987    .
7130       188                    Greek Cyprus    . 1987    0
7131       189 Micronesia, Federated States of  FSM 1987    .
7132       190               Republic of Yemen  YEM 1987    .
7133       191                         Germany  DEU 1987    .
7134       192                     Yugoslavia2  YUG 1987    .
7135       193                           Libya  LBY 1987    0
7136       194                       Ethiopia2  ETH 1987    .
7137       195                         Andorra  ADO 1987    .
7138       196                   Liechtenstein  LIE 1987    .
7139       197                Marshall Islands  MHL 1987    .
7140       198                           Palau  PLW 1987    .
7141       199                      San Marino  SMR 1987    .
7142         1                         Algeria  DZA 1988    1
7143         2                          Angola  AGO 1988    0
7144         3                           Benin  BEN 1988    0
7145         4                        Botswana  BWA 1988    0
7146         5                    Burkina Faso  BFA 1988    0
7147         6                         Burundi  BDI 1988    0
7148         7                        Cameroon  CMR 1988    0
7149         8                      Cape Verde  CPV 1988    0
7150         9        Central African Republic  CAF 1988    0
7151        10                            Chad  TCD 1988    0
7152        11                         Comoros  COM 1988    0
7153        12                           Congo  COG 1988    0
7154        13                        Djibouti  DJI 1988    0
7155        14                Egypt, Arab Rep.  EGY 1988    0
7156        15                        Ethiopia    . 1988    0
7157        16                           Gabon  GAB 1988    0
7158        17                     Gambia, The  GMB 1988    0
7159        18                           Ghana  GHA 1988    0
7160        19                          Guinea  GIN 1988    0
7161        20                   Guinea-Bissau  GNB 1988    0
7162        21                   Cote d'Ivoire  CIV 1988    0
7163        22                           Kenya  KEN 1988    0
7164        23                         Lesotho  LSO 1988    0
7165        24                         Liberia  LBR 1988    0
7166        25                      Madagascar  MDG 1988    0
7167        26                          Malawi  MWI 1988    0
7168        27                            Mali  MLI 1988    0
7169        28                      Mauritania  MRT 1988    0
7170        29                       Mauritius  MUS 1988    0
7171        30                         Morocco  MAR 1988    0
7172        31                      Mozambique  MOZ 1988    0
7173        32                           Niger  NER 1988    0
7174        33                         Nigeria  NGA 1988    0
7175        34                          Rwanda  RWA 1988    0
7176        35                         Senegal  SEN 1988    1
7177        36                      Seychelles  SYC 1988    0
7178        37                    Sierra Leone  SLE 1988    0
7179        38                         Somalia  SOM 1988    0
7180        39                    South Africa  ZAF 1988    0
7181        40                           Sudan  SDN 1988    0
7182        41                       Swaziland  SWZ 1988    0
7183        42                        Tanzania  TZA 1988    0
7184        43                            Togo  TGO 1988    0
7185        44                         Tunisia  TUN 1988    0
7186        45                          Uganda  UGA 1988    0
7187        46                           Zaire  ZAR 1988    0
7188        47                          Zambia  ZMB 1988    1
7189        48                        Zimbabwe  ZWE 1988    0
7190        49                    Bahamas, The  BHS 1988    0
7191        50                        Barbados  BRB 1988    0
7192        51                          Belize  BLZ 1988    0
7193        52                          Canada  CAN 1988    0
7194        53                      Costa Rica  CRI 1988    0
7195        54              Dominican Republic  DOM 1988    0
7196        55                     El Salvador  SLV 1988    0
7197        56                         Grenada  GRD 1988    0
7198        57                       Guatemala  GTM 1988    0
7199        58                           Haiti  HTI 1988    0
7200        59                        Honduras  HND 1988    0
7201        60                         Jamaica  JAM 1988    0
7202        61                          Mexico  MEX 1988    0
7203        62                       Nicaragua  NIC 1988    0
7204        63                          Panama  PAN 1988    0
7205        64             Trinidad and Tobago  TTO 1988    0
7206        66                       Argentina  ARG 1988    1
7207        67                         Bolivia  BOL 1988    0
7208        68                          Brazil  BRA 1988    1
7209        69                           Chile  CHL 1988    0
7210        70                        Colombia  COL 1988    0
7211        71                         Ecuador  ECU 1988    0
7212        72                          Guyana  GUY 1988    0
7213        73                        Paraguay  PRY 1988    0
7214        74                            Peru  PER 1988    0
7215        75                        Suriname  SUR 1988    0
7216        76                         Uruguay  URY 1988    0
7217        77                       Venezuela  VEN 1988    0
7218        78                      Bangladesh  BGD 1988    0
7219        80                           India  IND 1988    0
7220        81                       Indonesia  IDN 1988    0
7221        82              Iran, Islamic Rep.  IRN 1988    0
7222        83                            Iraq  IRQ 1988    0
7223        84                          Israel  ISR 1988    0
7224        85                           Japan  JPN 1988    1
7225        86                          Jordan  JOR 1988    0
7226        87             Korea, South (Rep.)  KOR 1988    0
7227        88                        Laos PDR  LAO 1988    0
7228        89                        Malaysia  MYS 1988    0
7229        90                        Mongolia  MNG 1988    0
7230        91                         Myanmar  MMR 1988    0
7231        92                           Nepal  NPL 1988    1
7232        93                        Pakistan  PAK 1988    0
7233        94                     Philippines  PHL 1988    0
7234        95                       Singapore  SGP 1988    0
7235        96                       Sri Lanka  LKA 1988    0
7236        97            Syrian Arab Republic  SYR 1988    0
7237        98                          Taiwan    . 1988    0
7238        99                        Thailand  THA 1988    0
7239       100             Yemen Arab Republic    . 1988    0
7240       101                         Austria  AUT 1988    0
7241       102                         Belgium  BEL 1988    0
7242       103                        Bulgaria  BGR 1988    0
7243       104                  Czechoslovakia    . 1988    0
7244       105                         Denmark  DNK 1988    0
7245       106                         Finland  FIN 1988    0
7246       108                   Germany, West    . 1988    1
7247       109                   Germany, East    . 1988    0
7248       110                          Greece  GRC 1988    0
7249       111                         Hungary  HUN 1988    0
7250       112                         Iceland  ISL 1988    0
7251       113                         Ireland  IRL 1988    0
7252       114                           Italy  ITA 1988    1
7253       115                      Luxembourg  LUX 1988    0
7254       116                           Malta  MLT 1988    0
7255       117                     Netherlands  NLD 1988    0
7256       118                          Norway  NOR 1988    0
7257       119                          Poland  POL 1988    0
7258       120                        Portugal  PRT 1988    0
7259       121                         Romania  ROM 1988    0
7260       122                           Spain  ESP 1988    0
7261       123                          Sweden  SWE 1988    0
7262       124                     Switzerland  CHE 1988    0
7263       125                          Turkey  TUR 1988    0
7264       128                      Yugoslavia    . 1988    1
7265       129                       Australia  AUS 1988    0
7266       130                            Fiji  FJI 1988    0
7267       131                     New Zealand  NZL 1988    0
7268       132                Papua New Guinea  PNG 1988    0
7269       133                 Solomon Islands  SLB 1988    0
7270       134                         Vanuatu  VUT 1988    0
7271       135                   Western Samoa  WSM 1988    0
7272       136                         Bahrain  BHR 1988    0
7273       137                          Kuwait  KWT 1988    0
7274       138                            Oman  OMN 1988    0
7275       139                           Qatar  QAT 1988    0
7276       140                    Saudi Arabia  SAU 1988    0
7277       141            United Arab Emirates  ARE 1988    0
7278       142                     Afghanistan  AFG 1988    0
7279       143                         Albania  ALB 1988    0
7280       144                         Antigua  ATG 1988    0
7281       145                         Armenia  ARM 1988    .
7282       146                           Nauru    . 1988    0
7283       147                      Azerbaijan  AZE 1988    .
7284       148                          Bhutan  BTN 1988    0
7285       149                         Belarus  BLR 1988    .
7286       150              Bosnia-Herzegovina  BIH 1988    .
7287       151                          Brunei  BRN 1988    0
7288       152                        Cambodia  KHM 1988    0
7289       153                         Croatia  HRV 1988    .
7290       154                            Cuba  CUB 1988    0
7291       155                  Czech Republic  CZE 1988    .
7292       156                 Slovak Republic  SVK 1988    .
7293       157                        Dominica  DMA 1988    0
7294       158               Equatorial Guinea  GNQ 1988    0
7295       159                         Estonia  EST 1988    .
7296       160                         Eritrea  ERI 1988    .
7297       161                         Georgia  GEO 1988    .
7298       162                      Kazakhstan  KAZ 1988    .
7299       163                        Kiribati  KIR 1988    0
7300       164        Korea, North (Dem. Rep.)  PRK 1988    0
7301       165                      Kyrgyzstan  KGZ 1988    .
7302       166                          Latvia  LVA 1988    .
7303       167                         Lebanon  LBN 1988    0
7304       168                       Lithuania  LTU 1988    .
7305       169                       Macedonia  MKD 1988    .
7306       170                 Maldive Islands  MDV 1988    0
7307       171                         Moldova  MDA 1988    .
7308       172                         Namibia  NAM 1988    .
7309       174                       St. Lucia  LCA 1988    0
7310       175           Sao Tome and Principe  STP 1988    0
7311       176                        Slovenia  SVN 1988    .
7312       177                      Somaliland    . 1988    .
7313       178               Yemen PDR (South)    . 1988    0
7314       179             St. Kitts and Nevis  KNA 1988    0
7315       180                     St. Vincent  VCT 1988    0
7316       181                      Tajikistan  TJK 1988    .
7317       182                    Turkmenistan  TKM 1988    .
7318       183                         Ukraine  UKR 1988    .
7319       184                           Tonga  TON 1988    0
7320       185                      Uzbekistan  UZB 1988    .
7321       186                         Vietnam  VNM 1988    0
7322       187                          Cyprus  CYP 1988    .
7323       188                    Greek Cyprus    . 1988    0
7324       189 Micronesia, Federated States of  FSM 1988    .
7325       190               Republic of Yemen  YEM 1988    .
7326       191                         Germany  DEU 1988    .
7327       192                     Yugoslavia2  YUG 1988    .
7328       193                           Libya  LBY 1988    0
7329       194                       Ethiopia2  ETH 1988    .
7330       195                         Andorra  ADO 1988    .
7331       196                   Liechtenstein  LIE 1988    .
7332       197                Marshall Islands  MHL 1988    .
7333       198                           Palau  PLW 1988    .
7334       199                      San Marino  SMR 1988    .
7335         1                         Algeria  DZA 1989    1
7336         2                          Angola  AGO 1989    0
7337         3                           Benin  BEN 1989    0
7338         4                        Botswana  BWA 1989    0
7339         5                    Burkina Faso  BFA 1989    0
7340         6                         Burundi  BDI 1989    0
7341         7                        Cameroon  CMR 1989    0
7342         8                      Cape Verde  CPV 1989    0
7343         9        Central African Republic  CAF 1989    0
7344        10                            Chad  TCD 1989    0
7345        11                         Comoros  COM 1989    0
7346        12                           Congo  COG 1989    0
7347        13                        Djibouti  DJI 1989    0
7348        14                Egypt, Arab Rep.  EGY 1989    0
7349        15                        Ethiopia    . 1989    1
7350        16                           Gabon  GAB 1989    0
7351        17                     Gambia, The  GMB 1989    0
7352        18                           Ghana  GHA 1989    0
7353        19                          Guinea  GIN 1989    0
7354        20                   Guinea-Bissau  GNB 1989    0
7355        21                   Cote d'Ivoire  CIV 1989    0
7356        22                           Kenya  KEN 1989    0
7357        23                         Lesotho  LSO 1989    0
7358        24                         Liberia  LBR 1989    0
7359        25                      Madagascar  MDG 1989    0
7360        26                          Malawi  MWI 1989    0
7361        27                            Mali  MLI 1989    0
7362        28                      Mauritania  MRT 1989    0
7363        29                       Mauritius  MUS 1989    0
7364        30                         Morocco  MAR 1989    0
7365        31                      Mozambique  MOZ 1989    0
7366        32                           Niger  NER 1989    0
7367        33                         Nigeria  NGA 1989    0
7368        34                          Rwanda  RWA 1989    0
7369        35                         Senegal  SEN 1989    1
7370        36                      Seychelles  SYC 1989    0
7371        37                    Sierra Leone  SLE 1989    0
7372        38                         Somalia  SOM 1989    0
7373        39                    South Africa  ZAF 1989    0
7374        40                           Sudan  SDN 1989    0
7375        41                       Swaziland  SWZ 1989    0
7376        42                        Tanzania  TZA 1989    0
7377        43                            Togo  TGO 1989    0
7378        44                         Tunisia  TUN 1989    0
7379        45                          Uganda  UGA 1989    0
7380        46                           Zaire  ZAR 1989    0
7381        47                          Zambia  ZMB 1989    0
7382        48                        Zimbabwe  ZWE 1989    0
7383        49                    Bahamas, The  BHS 1989    0
7384        50                        Barbados  BRB 1989    0
7385        51                          Belize  BLZ 1989    0
7386        52                          Canada  CAN 1989    1
7387        53                      Costa Rica  CRI 1989    0
7388        54              Dominican Republic  DOM 1989    0
7389        55                     El Salvador  SLV 1989    0
7390        56                         Grenada  GRD 1989    0
7391        57                       Guatemala  GTM 1989    0
7392        58                           Haiti  HTI 1989    0
7393        59                        Honduras  HND 1989    0
7394        60                         Jamaica  JAM 1989    0
7395        61                          Mexico  MEX 1989    0
7396        62                       Nicaragua  NIC 1989    0
7397        63                          Panama  PAN 1989    0
7398        64             Trinidad and Tobago  TTO 1989    0
7399        66                       Argentina  ARG 1989    0
7400        67                         Bolivia  BOL 1989    0
7401        68                          Brazil  BRA 1989    1
7402        69                           Chile  CHL 1989    0
7403        70                        Colombia  COL 1989    1
7404        71                         Ecuador  ECU 1989    0
7405        72                          Guyana  GUY 1989    0
7406        73                        Paraguay  PRY 1989    0
7407        74                            Peru  PER 1989    0
7408        75                        Suriname  SUR 1989    0
7409        76                         Uruguay  URY 1989    0
7410        77                       Venezuela  VEN 1989    0
7411        78                      Bangladesh  BGD 1989    0
7412        80                           India  IND 1989    0
7413        81                       Indonesia  IDN 1989    0
7414        82              Iran, Islamic Rep.  IRN 1989    0
7415        83                            Iraq  IRQ 1989    0
7416        84                          Israel  ISR 1989    0
7417        85                           Japan  JPN 1989    0
7418        86                          Jordan  JOR 1989    0
7419        87             Korea, South (Rep.)  KOR 1989    0
7420        88                        Laos PDR  LAO 1989    0
7421        89                        Malaysia  MYS 1989    1
7422        90                        Mongolia  MNG 1989    0
7423        91                         Myanmar  MMR 1989    0
7424        92                           Nepal  NPL 1989    1
7425        93                        Pakistan  PAK 1989    0
7426        94                     Philippines  PHL 1989    0
7427        95                       Singapore  SGP 1989    0
7428        96                       Sri Lanka  LKA 1989    0
7429        97            Syrian Arab Republic  SYR 1989    0
7430        98                          Taiwan    . 1989    0
7431        99                        Thailand  THA 1989    0
7432       100             Yemen Arab Republic    . 1989    0
7433       101                         Austria  AUT 1989    0
7434       102                         Belgium  BEL 1989    0
7435       103                        Bulgaria  BGR 1989    0
7436       104                  Czechoslovakia    . 1989    0
7437       105                         Denmark  DNK 1989    0
7438       106                         Finland  FIN 1989    1
7439       108                   Germany, West    . 1989    0
7440       109                   Germany, East    . 1989    0
7441       110                          Greece  GRC 1989    0
7442       111                         Hungary  HUN 1989    0
7443       112                         Iceland  ISL 1989    0
7444       113                         Ireland  IRL 1989    0
7445       114                           Italy  ITA 1989    0
7446       115                      Luxembourg  LUX 1989    0
7447       116                           Malta  MLT 1989    0
7448       117                     Netherlands  NLD 1989    0
7449       118                          Norway  NOR 1989    0
7450       119                          Poland  POL 1989    0
7451       120                        Portugal  PRT 1989    0
7452       121                         Romania  ROM 1989    0
7453       122                           Spain  ESP 1989    0
7454       123                          Sweden  SWE 1989    0
7455       124                     Switzerland  CHE 1989    0
7456       125                          Turkey  TUR 1989    0
7457       128                      Yugoslavia    . 1989    1
7458       129                       Australia  AUS 1989    0
7459       130                            Fiji  FJI 1989    0
7460       131                     New Zealand  NZL 1989    0
7461       132                Papua New Guinea  PNG 1989    0
7462       133                 Solomon Islands  SLB 1989    0
7463       134                         Vanuatu  VUT 1989    0
7464       135                   Western Samoa  WSM 1989    0
7465       136                         Bahrain  BHR 1989    0
7466       137                          Kuwait  KWT 1989    0
7467       138                            Oman  OMN 1989    0
7468       139                           Qatar  QAT 1989    0
7469       140                    Saudi Arabia  SAU 1989    0
7470       141            United Arab Emirates  ARE 1989    0
7471       142                     Afghanistan  AFG 1989    0
7472       143                         Albania  ALB 1989    0
7473       144                         Antigua  ATG 1989    0
7474       145                         Armenia  ARM 1989    .
7475       146                           Nauru    . 1989    0
7476       147                      Azerbaijan  AZE 1989    .
7477       148                          Bhutan  BTN 1989    0
7478       149                         Belarus  BLR 1989    .
7479       150              Bosnia-Herzegovina  BIH 1989    .
7480       151                          Brunei  BRN 1989    0
7481       152                        Cambodia  KHM 1989    0
7482       153                         Croatia  HRV 1989    .
7483       154                            Cuba  CUB 1989    0
7484       155                  Czech Republic  CZE 1989    .
7485       156                 Slovak Republic  SVK 1989    .
7486       157                        Dominica  DMA 1989    0
7487       158               Equatorial Guinea  GNQ 1989    0
7488       159                         Estonia  EST 1989    .
7489       160                         Eritrea  ERI 1989    .
7490       161                         Georgia  GEO 1989    .
7491       162                      Kazakhstan  KAZ 1989    .
7492       163                        Kiribati  KIR 1989    0
7493       164        Korea, North (Dem. Rep.)  PRK 1989    0
7494       165                      Kyrgyzstan  KGZ 1989    .
7495       166                          Latvia  LVA 1989    .
7496       167                         Lebanon  LBN 1989    0
7497       168                       Lithuania  LTU 1989    .
7498       169                       Macedonia  MKD 1989    .
7499       170                 Maldive Islands  MDV 1989    0
7500       171                         Moldova  MDA 1989    .
7501       172                         Namibia  NAM 1989    .
7502       174                       St. Lucia  LCA 1989    0
7503       175           Sao Tome and Principe  STP 1989    0
7504       176                        Slovenia  SVN 1989    .
7505       177                      Somaliland    . 1989    .
7506       178               Yemen PDR (South)    . 1989    0
7507       179             St. Kitts and Nevis  KNA 1989    0
7508       180                     St. Vincent  VCT 1989    0
7509       181                      Tajikistan  TJK 1989    .
7510       182                    Turkmenistan  TKM 1989    .
7511       183                         Ukraine  UKR 1989    .
7512       184                           Tonga  TON 1989    0
7513       185                      Uzbekistan  UZB 1989    .
7514       186                         Vietnam  VNM 1989    0
7515       187                          Cyprus  CYP 1989    .
7516       188                    Greek Cyprus    . 1989    0
7517       189 Micronesia, Federated States of  FSM 1989    .
7518       190               Republic of Yemen  YEM 1989    .
7519       191                         Germany  DEU 1989    .
7520       192                     Yugoslavia2  YUG 1989    .
7521       193                           Libya  LBY 1989    0
7522       194                       Ethiopia2  ETH 1989    .
7523       195                         Andorra  ADO 1989    .
7524       196                   Liechtenstein  LIE 1989    .
7525       197                Marshall Islands  MHL 1989    .
7526       198                           Palau  PLW 1989    .
7527       199                      San Marino  SMR 1989    .
7528         1                         Algeria  DZA 1990    0
7529         2                          Angola  AGO 1990    0
7530         3                           Benin  BEN 1990    0
7531         4                        Botswana  BWA 1990    0
7532         5                    Burkina Faso  BFA 1990    0
7533         6                         Burundi  BDI 1990    0
7534         7                        Cameroon  CMR 1990    0
7535         8                      Cape Verde  CPV 1990    0
7536         9        Central African Republic  CAF 1990    0
7537        10                            Chad  TCD 1990    0
7538        11                         Comoros  COM 1990    0
7539        12                           Congo  COG 1990    0
7540        13                        Djibouti  DJI 1990    0
7541        14                Egypt, Arab Rep.  EGY 1990    0
7542        15                        Ethiopia    . 1990    1
7543        16                           Gabon  GAB 1990    0
7544        17                     Gambia, The  GMB 1990    0
7545        18                           Ghana  GHA 1990    0
7546        19                          Guinea  GIN 1990    0
7547        20                   Guinea-Bissau  GNB 1990    0
7548        21                   Cote d'Ivoire  CIV 1990    1
7549        22                           Kenya  KEN 1990    0
7550        23                         Lesotho  LSO 1990    0
7551        24                         Liberia  LBR 1990    0
7552        25                      Madagascar  MDG 1990    0
7553        26                          Malawi  MWI 1990    0
7554        27                            Mali  MLI 1990    0
7555        28                      Mauritania  MRT 1990    0
7556        29                       Mauritius  MUS 1990    0
7557        30                         Morocco  MAR 1990    0
7558        31                      Mozambique  MOZ 1990    0
7559        32                           Niger  NER 1990    0
7560        33                         Nigeria  NGA 1990    0
7561        34                          Rwanda  RWA 1990    0
7562        35                         Senegal  SEN 1990    0
7563        36                      Seychelles  SYC 1990    0
7564        37                    Sierra Leone  SLE 1990    0
7565        38                         Somalia  SOM 1990    0
7566        39                    South Africa  ZAF 1990    0
7567        40                           Sudan  SDN 1990    0
7568        41                       Swaziland  SWZ 1990    0
7569        42                        Tanzania  TZA 1990    0
7570        43                            Togo  TGO 1990    0
7571        44                         Tunisia  TUN 1990    0
7572        45                          Uganda  UGA 1990    0
7573        46                           Zaire  ZAR 1990    1
7574        47                          Zambia  ZMB 1990    0
7575        48                        Zimbabwe  ZWE 1990    0
7576        49                    Bahamas, The  BHS 1990    0
7577        50                        Barbados  BRB 1990    0
7578        51                          Belize  BLZ 1990    0
7579        52                          Canada  CAN 1990    1
7580        53                      Costa Rica  CRI 1990    0
7581        54              Dominican Republic  DOM 1990    0
7582        55                     El Salvador  SLV 1990    0
7583        56                         Grenada  GRD 1990    0
7584        57                       Guatemala  GTM 1990    0
7585        58                           Haiti  HTI 1990    0
7586        59                        Honduras  HND 1990    0
7587        60                         Jamaica  JAM 1990    0
7588        61                          Mexico  MEX 1990    0
7589        62                       Nicaragua  NIC 1990    0
7590        63                          Panama  PAN 1990    0
7591        64             Trinidad and Tobago  TTO 1990    0
7592        66                       Argentina  ARG 1990    0
7593        67                         Bolivia  BOL 1990    0
7594        68                          Brazil  BRA 1990    0
7595        69                           Chile  CHL 1990    0
7596        70                        Colombia  COL 1990    1
7597        71                         Ecuador  ECU 1990    0
7598        72                          Guyana  GUY 1990    0
7599        73                        Paraguay  PRY 1990    0
7600        74                            Peru  PER 1990    0
7601        75                        Suriname  SUR 1990    0
7602        76                         Uruguay  URY 1990    0
7603        77                       Venezuela  VEN 1990    0
7604        78                      Bangladesh  BGD 1990    0
7605        80                           India  IND 1990    0
7606        81                       Indonesia  IDN 1990    0
7607        82              Iran, Islamic Rep.  IRN 1990    0
7608        83                            Iraq  IRQ 1990    0
7609        84                          Israel  ISR 1990    0
7610        85                           Japan  JPN 1990    0
7611        86                          Jordan  JOR 1990    0
7612        87             Korea, South (Rep.)  KOR 1990    0
7613        88                        Laos PDR  LAO 1990    0
7614        89                        Malaysia  MYS 1990    1
7615        90                        Mongolia  MNG 1990    0
7616        91                         Myanmar  MMR 1990    0
7617        92                           Nepal  NPL 1990    0
7618        93                        Pakistan  PAK 1990    0
7619        94                     Philippines  PHL 1990    0
7620        95                       Singapore  SGP 1990    0
7621        96                       Sri Lanka  LKA 1990    0
7622        97            Syrian Arab Republic  SYR 1990    0
7623        98                          Taiwan    . 1990    0
7624        99                        Thailand  THA 1990    0
7625       100             Yemen Arab Republic    . 1990    .
7626       101                         Austria  AUT 1990    0
7627       102                         Belgium  BEL 1990    0
7628       103                        Bulgaria  BGR 1990    0
7629       104                  Czechoslovakia    . 1990    0
7630       105                         Denmark  DNK 1990    0
7631       106                         Finland  FIN 1990    1
7632       108                   Germany, West    . 1990    .
7633       109                   Germany, East    . 1990    .
7634       110                          Greece  GRC 1990    0
7635       111                         Hungary  HUN 1990    0
7636       112                         Iceland  ISL 1990    0
7637       113                         Ireland  IRL 1990    0
7638       114                           Italy  ITA 1990    0
7639       115                      Luxembourg  LUX 1990    0
7640       116                           Malta  MLT 1990    0
7641       117                     Netherlands  NLD 1990    0
7642       118                          Norway  NOR 1990    0
7643       119                          Poland  POL 1990    0
7644       120                        Portugal  PRT 1990    0
7645       121                         Romania  ROM 1990    1
7646       122                           Spain  ESP 1990    0
7647       123                          Sweden  SWE 1990    0
7648       124                     Switzerland  CHE 1990    0
7649       125                          Turkey  TUR 1990    0
7650       128                      Yugoslavia    . 1990    0
7651       129                       Australia  AUS 1990    0
7652       130                            Fiji  FJI 1990    0
7653       131                     New Zealand  NZL 1990    0
7654       132                Papua New Guinea  PNG 1990    0
7655       133                 Solomon Islands  SLB 1990    0
7656       134                         Vanuatu  VUT 1990    0
7657       135                   Western Samoa  WSM 1990    0
7658       136                         Bahrain  BHR 1990    0
7659       137                          Kuwait  KWT 1990    0
7660       138                            Oman  OMN 1990    0
7661       139                           Qatar  QAT 1990    0
7662       140                    Saudi Arabia  SAU 1990    0
7663       141            United Arab Emirates  ARE 1990    0
7664       142                     Afghanistan  AFG 1990    0
7665       143                         Albania  ALB 1990    0
7666       144                         Antigua  ATG 1990    0
7667       145                         Armenia  ARM 1990    .
7668       146                           Nauru    . 1990    0
7669       147                      Azerbaijan  AZE 1990    .
7670       148                          Bhutan  BTN 1990    0
7671       149                         Belarus  BLR 1990    .
7672       150              Bosnia-Herzegovina  BIH 1990    .
7673       151                          Brunei  BRN 1990    0
7674       152                        Cambodia  KHM 1990    0
7675       153                         Croatia  HRV 1990    .
7676       154                            Cuba  CUB 1990    1
7677       155                  Czech Republic  CZE 1990    .
7678       156                 Slovak Republic  SVK 1990    .
7679       157                        Dominica  DMA 1990    0
7680       158               Equatorial Guinea  GNQ 1990    0
7681       159                         Estonia  EST 1990    .
7682       160                         Eritrea  ERI 1990    .
7683       161                         Georgia  GEO 1990    .
7684       162                      Kazakhstan  KAZ 1990    .
7685       163                        Kiribati  KIR 1990    0
7686       164        Korea, North (Dem. Rep.)  PRK 1990    0
7687       165                      Kyrgyzstan  KGZ 1990    .
7688       166                          Latvia  LVA 1990    .
7689       167                         Lebanon  LBN 1990    0
7690       168                       Lithuania  LTU 1990    .
7691       169                       Macedonia  MKD 1990    .
7692       170                 Maldive Islands  MDV 1990    0
7693       171                         Moldova  MDA 1990    .
7694       172                         Namibia  NAM 1990    0
7695       174                       St. Lucia  LCA 1990    0
7696       175           Sao Tome and Principe  STP 1990    0
7697       176                        Slovenia  SVN 1990    .
7698       177                      Somaliland    . 1990    .
7699       178               Yemen PDR (South)    . 1990    .
7700       179             St. Kitts and Nevis  KNA 1990    0
7701       180                     St. Vincent  VCT 1990    0
7702       181                      Tajikistan  TJK 1990    .
7703       182                    Turkmenistan  TKM 1990    .
7704       183                         Ukraine  UKR 1990    .
7705       184                           Tonga  TON 1990    0
7706       185                      Uzbekistan  UZB 1990    .
7707       186                         Vietnam  VNM 1990    0
7708       187                          Cyprus  CYP 1990    .
7709       188                    Greek Cyprus    . 1990    0
7710       189 Micronesia, Federated States of  FSM 1990    .
7711       190               Republic of Yemen  YEM 1990    1
7712       191                         Germany  DEU 1990    0
7713       192                     Yugoslavia2  YUG 1990    .
7714       193                           Libya  LBY 1990    0
7715       194                       Ethiopia2  ETH 1990    .
7716       195                         Andorra  ADO 1990    .
7717       196                   Liechtenstein  LIE 1990    0
7718       197                Marshall Islands  MHL 1990    .
7719       198                           Palau  PLW 1990    .
7720       199                      San Marino  SMR 1990    .
7721         1                         Algeria  DZA 1991    0
7722         2                          Angola  AGO 1991    0
7723         3                           Benin  BEN 1991    0
7724         4                        Botswana  BWA 1991    0
7725         5                    Burkina Faso  BFA 1991    0
7726         6                         Burundi  BDI 1991    0
7727         7                        Cameroon  CMR 1991    0
7728         8                      Cape Verde  CPV 1991    0
7729         9        Central African Republic  CAF 1991    0
7730        10                            Chad  TCD 1991    0
7731        11                         Comoros  COM 1991    0
7732        12                           Congo  COG 1991    0
7733        13                        Djibouti  DJI 1991    0
7734        14                Egypt, Arab Rep.  EGY 1991    0
7735        15                        Ethiopia    . 1991    0
7736        16                           Gabon  GAB 1991    0
7737        17                     Gambia, The  GMB 1991    0
7738        18                           Ghana  GHA 1991    0
7739        19                          Guinea  GIN 1991    0
7740        20                   Guinea-Bissau  GNB 1991    0
7741        21                   Cote d'Ivoire  CIV 1991    1
7742        22                           Kenya  KEN 1991    0
7743        23                         Lesotho  LSO 1991    0
7744        24                         Liberia  LBR 1991    0
7745        25                      Madagascar  MDG 1991    0
7746        26                          Malawi  MWI 1991    0
7747        27                            Mali  MLI 1991    0
7748        28                      Mauritania  MRT 1991    0
7749        29                       Mauritius  MUS 1991    0
7750        30                         Morocco  MAR 1991    0
7751        31                      Mozambique  MOZ 1991    0
7752        32                           Niger  NER 1991    0
7753        33                         Nigeria  NGA 1991    0
7754        34                          Rwanda  RWA 1991    0
7755        35                         Senegal  SEN 1991    0
7756        36                      Seychelles  SYC 1991    0
7757        37                    Sierra Leone  SLE 1991    0
7758        38                         Somalia  SOM 1991    0
7759        39                    South Africa  ZAF 1991    0
7760        40                           Sudan  SDN 1991    0
7761        41                       Swaziland  SWZ 1991    0
7762        42                        Tanzania  TZA 1991    0
7763        43                            Togo  TGO 1991    0
7764        44                         Tunisia  TUN 1991    0
7765        45                          Uganda  UGA 1991    0
7766        46                           Zaire  ZAR 1991    1
7767        47                          Zambia  ZMB 1991    0
7768        48                        Zimbabwe  ZWE 1991    1
7769        49                    Bahamas, The  BHS 1991    0
7770        50                        Barbados  BRB 1991    0
7771        51                          Belize  BLZ 1991    0
7772        52                          Canada  CAN 1991    0
7773        53                      Costa Rica  CRI 1991    0
7774        54              Dominican Republic  DOM 1991    0
7775        55                     El Salvador  SLV 1991    0
7776        56                         Grenada  GRD 1991    0
7777        57                       Guatemala  GTM 1991    0
7778        58                           Haiti  HTI 1991    0
7779        59                        Honduras  HND 1991    0
7780        60                         Jamaica  JAM 1991    0
7781        61                          Mexico  MEX 1991    0
7782        62                       Nicaragua  NIC 1991    0
7783        63                          Panama  PAN 1991    0
7784        64             Trinidad and Tobago  TTO 1991    0
7785        66                       Argentina  ARG 1991    0
7786        67                         Bolivia  BOL 1991    0
7787        68                          Brazil  BRA 1991    0
7788        69                           Chile  CHL 1991    0
7789        70                        Colombia  COL 1991    0
7790        71                         Ecuador  ECU 1991    1
7791        72                          Guyana  GUY 1991    0
7792        73                        Paraguay  PRY 1991    0
7793        74                            Peru  PER 1991    0
7794        75                        Suriname  SUR 1991    0
7795        76                         Uruguay  URY 1991    0
7796        77                       Venezuela  VEN 1991    0
7797        78                      Bangladesh  BGD 1991    0
7798        80                           India  IND 1991    1
7799        81                       Indonesia  IDN 1991    0
7800        82              Iran, Islamic Rep.  IRN 1991    0
7801        83                            Iraq  IRQ 1991    0
7802        84                          Israel  ISR 1991    0
7803        85                           Japan  JPN 1991    0
7804        86                          Jordan  JOR 1991    0
7805        87             Korea, South (Rep.)  KOR 1991    0
7806        88                        Laos PDR  LAO 1991    0
7807        89                        Malaysia  MYS 1991    0
7808        90                        Mongolia  MNG 1991    0
7809        91                         Myanmar  MMR 1991    0
7810        92                           Nepal  NPL 1991    0
7811        93                        Pakistan  PAK 1991    0
7812        94                     Philippines  PHL 1991    0
7813        95                       Singapore  SGP 1991    0
7814        96                       Sri Lanka  LKA 1991    0
7815        97            Syrian Arab Republic  SYR 1991    0
7816        98                          Taiwan    . 1991    0
7817        99                        Thailand  THA 1991    0
7818       100             Yemen Arab Republic    . 1991    .
7819       101                         Austria  AUT 1991    1
7820       102                         Belgium  BEL 1991    1
7821       103                        Bulgaria  BGR 1991    0
7822       104                  Czechoslovakia    . 1991    0
7823       105                         Denmark  DNK 1991    0
7824       106                         Finland  FIN 1991    0
7825       108                   Germany, West    . 1991    .
7826       109                   Germany, East    . 1991    .
7827       110                          Greece  GRC 1991    0
7828       111                         Hungary  HUN 1991    0
7829       112                         Iceland  ISL 1991    0
7830       113                         Ireland  IRL 1991    0
7831       114                           Italy  ITA 1991    0
7832       115                      Luxembourg  LUX 1991    0
7833       116                           Malta  MLT 1991    0
7834       117                     Netherlands  NLD 1991    0
7835       118                          Norway  NOR 1991    0
7836       119                          Poland  POL 1991    0
7837       120                        Portugal  PRT 1991    0
7838       121                         Romania  ROM 1991    1
7839       122                           Spain  ESP 1991    0
7840       123                          Sweden  SWE 1991    0
7841       124                     Switzerland  CHE 1991    0
7842       125                          Turkey  TUR 1991    0
7843       128                      Yugoslavia    . 1991    .
7844       129                       Australia  AUS 1991    0
7845       130                            Fiji  FJI 1991    0
7846       131                     New Zealand  NZL 1991    0
7847       132                Papua New Guinea  PNG 1991    0
7848       133                 Solomon Islands  SLB 1991    0
7849       134                         Vanuatu  VUT 1991    0
7850       135                   Western Samoa  WSM 1991    0
7851       136                         Bahrain  BHR 1991    0
7852       137                          Kuwait  KWT 1991    0
7853       138                            Oman  OMN 1991    0
7854       139                           Qatar  QAT 1991    0
7855       140                    Saudi Arabia  SAU 1991    0
7856       141            United Arab Emirates  ARE 1991    0
7857       142                     Afghanistan  AFG 1991    0
7858       143                         Albania  ALB 1991    0
7859       144                         Antigua  ATG 1991    0
7860       145                         Armenia  ARM 1991    0
7861       146                           Nauru    . 1991    0
7862       147                      Azerbaijan  AZE 1991    0
7863       148                          Bhutan  BTN 1991    0
7864       149                         Belarus  BLR 1991    0
7865       150              Bosnia-Herzegovina  BIH 1991    0
7866       151                          Brunei  BRN 1991    0
7867       152                        Cambodia  KHM 1991    0
7868       153                         Croatia  HRV 1991    0
7869       154                            Cuba  CUB 1991    1
7870       155                  Czech Republic  CZE 1991    .
7871       156                 Slovak Republic  SVK 1991    .
7872       157                        Dominica  DMA 1991    0
7873       158               Equatorial Guinea  GNQ 1991    0
7874       159                         Estonia  EST 1991    0
7875       160                         Eritrea  ERI 1991    .
7876       161                         Georgia  GEO 1991    0
7877       162                      Kazakhstan  KAZ 1991    0
7878       163                        Kiribati  KIR 1991    0
7879       164        Korea, North (Dem. Rep.)  PRK 1991    0
7880       165                      Kyrgyzstan  KGZ 1991    0
7881       166                          Latvia  LVA 1991    0
7882       167                         Lebanon  LBN 1991    0
7883       168                       Lithuania  LTU 1991    0
7884       169                       Macedonia  MKD 1991    0
7885       170                 Maldive Islands  MDV 1991    0
7886       171                         Moldova  MDA 1991    0
7887       172                         Namibia  NAM 1991    0
7888       174                       St. Lucia  LCA 1991    0
7889       175           Sao Tome and Principe  STP 1991    0
7890       176                        Slovenia  SVN 1991    0
7891       177                      Somaliland    . 1991    0
7892       178               Yemen PDR (South)    . 1991    .
7893       179             St. Kitts and Nevis  KNA 1991    0
7894       180                     St. Vincent  VCT 1991    0
7895       181                      Tajikistan  TJK 1991    0
7896       182                    Turkmenistan  TKM 1991    0
7897       183                         Ukraine  UKR 1991    0
7898       184                           Tonga  TON 1991    0
7899       185                      Uzbekistan  UZB 1991    0
7900       186                         Vietnam  VNM 1991    0
7901       187                          Cyprus  CYP 1991    .
7902       188                    Greek Cyprus    . 1991    0
7903       189 Micronesia, Federated States of  FSM 1991    0
7904       190               Republic of Yemen  YEM 1991    1
7905       191                         Germany  DEU 1991    0
7906       192                     Yugoslavia2  YUG 1991    0
7907       193                           Libya  LBY 1991    0
7908       194                       Ethiopia2  ETH 1991    .
7909       195                         Andorra  ADO 1991    .
7910       196                   Liechtenstein  LIE 1991    0
7911       197                Marshall Islands  MHL 1991    0
7912       198                           Palau  PLW 1991    .
7913       199                      San Marino  SMR 1991    .
7914         1                         Algeria  DZA 1992    0
7915         2                          Angola  AGO 1992    0
7916         3                           Benin  BEN 1992    0
7917         4                        Botswana  BWA 1992    0
7918         5                    Burkina Faso  BFA 1992    0
7919         6                         Burundi  BDI 1992    0
7920         7                        Cameroon  CMR 1992    0
7921         8                      Cape Verde  CPV 1992    1
7922         9        Central African Republic  CAF 1992    0
7923        10                            Chad  TCD 1992    0
7924        11                         Comoros  COM 1992    0
7925        12                           Congo  COG 1992    0
7926        13                        Djibouti  DJI 1992    0
7927        14                Egypt, Arab Rep.  EGY 1992    0
7928        15                        Ethiopia    . 1992    0
7929        16                           Gabon  GAB 1992    0
7930        17                     Gambia, The  GMB 1992    0
7931        18                           Ghana  GHA 1992    0
7932        19                          Guinea  GIN 1992    0
7933        20                   Guinea-Bissau  GNB 1992    0
7934        21                   Cote d'Ivoire  CIV 1992    0
7935        22                           Kenya  KEN 1992    0
7936        23                         Lesotho  LSO 1992    0
7937        24                         Liberia  LBR 1992    0
7938        25                      Madagascar  MDG 1992    0
7939        26                          Malawi  MWI 1992    0
7940        27                            Mali  MLI 1992    0
7941        28                      Mauritania  MRT 1992    0
7942        29                       Mauritius  MUS 1992    0
7943        30                         Morocco  MAR 1992    1
7944        31                      Mozambique  MOZ 1992    0
7945        32                           Niger  NER 1992    0
7946        33                         Nigeria  NGA 1992    0
7947        34                          Rwanda  RWA 1992    0
7948        35                         Senegal  SEN 1992    0
7949        36                      Seychelles  SYC 1992    0
7950        37                    Sierra Leone  SLE 1992    0
7951        38                         Somalia  SOM 1992    0
7952        39                    South Africa  ZAF 1992    0
7953        40                           Sudan  SDN 1992    0
7954        41                       Swaziland  SWZ 1992    0
7955        42                        Tanzania  TZA 1992    0
7956        43                            Togo  TGO 1992    0
7957        44                         Tunisia  TUN 1992    0
7958        45                          Uganda  UGA 1992    0
7959        46                           Zaire  ZAR 1992    0
7960        47                          Zambia  ZMB 1992    0
7961        48                        Zimbabwe  ZWE 1992    1
7962        49                    Bahamas, The  BHS 1992    0
7963        50                        Barbados  BRB 1992    0
7964        51                          Belize  BLZ 1992    0
7965        52                          Canada  CAN 1992    0
7966        53                      Costa Rica  CRI 1992    0
7967        54              Dominican Republic  DOM 1992    0
7968        55                     El Salvador  SLV 1992    0
7969        56                         Grenada  GRD 1992    0
7970        57                       Guatemala  GTM 1992    0
7971        58                           Haiti  HTI 1992    0
7972        59                        Honduras  HND 1992    0
7973        60                         Jamaica  JAM 1992    0
7974        61                          Mexico  MEX 1992    0
7975        62                       Nicaragua  NIC 1992    0
7976        63                          Panama  PAN 1992    0
7977        64             Trinidad and Tobago  TTO 1992    0
7978        66                       Argentina  ARG 1992    0
7979        67                         Bolivia  BOL 1992    0
7980        68                          Brazil  BRA 1992    0
7981        69                           Chile  CHL 1992    0
7982        70                        Colombia  COL 1992    0
7983        71                         Ecuador  ECU 1992    1
7984        72                          Guyana  GUY 1992    0
7985        73                        Paraguay  PRY 1992    0
7986        74                            Peru  PER 1992    0
7987        75                        Suriname  SUR 1992    0
7988        76                         Uruguay  URY 1992    0
7989        77                       Venezuela  VEN 1992    1
7990        78                      Bangladesh  BGD 1992    0
7991        80                           India  IND 1992    1
7992        81                       Indonesia  IDN 1992    0
7993        82              Iran, Islamic Rep.  IRN 1992    0
7994        83                            Iraq  IRQ 1992    0
7995        84                          Israel  ISR 1992    0
7996        85                           Japan  JPN 1992    1
7997        86                          Jordan  JOR 1992    0
7998        87             Korea, South (Rep.)  KOR 1992    0
7999        88                        Laos PDR  LAO 1992    0
8000        89                        Malaysia  MYS 1992    0
8001        90                        Mongolia  MNG 1992    0
8002        91                         Myanmar  MMR 1992    0
8003        92                           Nepal  NPL 1992    0
8004        93                        Pakistan  PAK 1992    0
8005        94                     Philippines  PHL 1992    0
8006        95                       Singapore  SGP 1992    0
8007        96                       Sri Lanka  LKA 1992    0
8008        97            Syrian Arab Republic  SYR 1992    0
8009        98                          Taiwan    . 1992    0
8010        99                        Thailand  THA 1992    0
8011       100             Yemen Arab Republic    . 1992    .
8012       101                         Austria  AUT 1992    1
8013       102                         Belgium  BEL 1992    1
8014       103                        Bulgaria  BGR 1992    0
8015       104                  Czechoslovakia    . 1992    0
8016       105                         Denmark  DNK 1992    0
8017       106                         Finland  FIN 1992    0
8018       108                   Germany, West    . 1992    .
8019       109                   Germany, East    . 1992    .
8020       110                          Greece  GRC 1992    0
8021       111                         Hungary  HUN 1992    1
8022       112                         Iceland  ISL 1992    0
8023       113                         Ireland  IRL 1992    0
8024       114                           Italy  ITA 1992    0
8025       115                      Luxembourg  LUX 1992    0
8026       116                           Malta  MLT 1992    0
8027       117                     Netherlands  NLD 1992    0
8028       118                          Norway  NOR 1992    0
8029       119                          Poland  POL 1992    0
8030       120                        Portugal  PRT 1992    0
8031       121                         Romania  ROM 1992    0
8032       122                           Spain  ESP 1992    0
8033       123                          Sweden  SWE 1992    0
8034       124                     Switzerland  CHE 1992    0
8035       125                          Turkey  TUR 1992    0
8036       128                      Yugoslavia    . 1992    .
8037       129                       Australia  AUS 1992    0
8038       130                            Fiji  FJI 1992    0
8039       131                     New Zealand  NZL 1992    0
8040       132                Papua New Guinea  PNG 1992    0
8041       133                 Solomon Islands  SLB 1992    0
8042       134                         Vanuatu  VUT 1992    0
8043       135                   Western Samoa  WSM 1992    0
8044       136                         Bahrain  BHR 1992    0
8045       137                          Kuwait  KWT 1992    0
8046       138                            Oman  OMN 1992    0
8047       139                           Qatar  QAT 1992    0
8048       140                    Saudi Arabia  SAU 1992    0
8049       141            United Arab Emirates  ARE 1992    0
8050       142                     Afghanistan  AFG 1992    0
8051       143                         Albania  ALB 1992    0
8052       144                         Antigua  ATG 1992    0
8053       145                         Armenia  ARM 1992    0
8054       146                           Nauru    . 1992    0
8055       147                      Azerbaijan  AZE 1992    0
8056       148                          Bhutan  BTN 1992    0
8057       149                         Belarus  BLR 1992    0
8058       150              Bosnia-Herzegovina  BIH 1992    0
8059       151                          Brunei  BRN 1992    0
8060       152                        Cambodia  KHM 1992    0
8061       153                         Croatia  HRV 1992    0
8062       154                            Cuba  CUB 1992    0
8063       155                  Czech Republic  CZE 1992    .
8064       156                 Slovak Republic  SVK 1992    .
8065       157                        Dominica  DMA 1992    0
8066       158               Equatorial Guinea  GNQ 1992    0
8067       159                         Estonia  EST 1992    0
8068       160                         Eritrea  ERI 1992    .
8069       161                         Georgia  GEO 1992    0
8070       162                      Kazakhstan  KAZ 1992    0
8071       163                        Kiribati  KIR 1992    0
8072       164        Korea, North (Dem. Rep.)  PRK 1992    0
8073       165                      Kyrgyzstan  KGZ 1992    0
8074       166                          Latvia  LVA 1992    0
8075       167                         Lebanon  LBN 1992    0
8076       168                       Lithuania  LTU 1992    0
8077       169                       Macedonia  MKD 1992    0
8078       170                 Maldive Islands  MDV 1992    0
8079       171                         Moldova  MDA 1992    0
8080       172                         Namibia  NAM 1992    0
8081       174                       St. Lucia  LCA 1992    0
8082       175           Sao Tome and Principe  STP 1992    0
8083       176                        Slovenia  SVN 1992    0
8084       177                      Somaliland    . 1992    0
8085       178               Yemen PDR (South)    . 1992    .
8086       179             St. Kitts and Nevis  KNA 1992    0
8087       180                     St. Vincent  VCT 1992    0
8088       181                      Tajikistan  TJK 1992    0
8089       182                    Turkmenistan  TKM 1992    0
8090       183                         Ukraine  UKR 1992    0
8091       184                           Tonga  TON 1992    0
8092       185                      Uzbekistan  UZB 1992    0
8093       186                         Vietnam  VNM 1992    0
8094       187                          Cyprus  CYP 1992    .
8095       188                    Greek Cyprus    . 1992    0
8096       189 Micronesia, Federated States of  FSM 1992    0
8097       190               Republic of Yemen  YEM 1992    0
8098       191                         Germany  DEU 1992    0
8099       192                     Yugoslavia2  YUG 1992    0
8100       193                           Libya  LBY 1992    0
8101       194                       Ethiopia2  ETH 1992    .
8102       195                         Andorra  ADO 1992    .
8103       196                   Liechtenstein  LIE 1992    0
8104       197                Marshall Islands  MHL 1992    0
8105       198                           Palau  PLW 1992    .
8106       199                      San Marino  SMR 1992    0
8107         1                         Algeria  DZA 1993    0
8108         2                          Angola  AGO 1993    0
8109         3                           Benin  BEN 1993    0
8110         4                        Botswana  BWA 1993    0
8111         5                    Burkina Faso  BFA 1993    0
8112         6                         Burundi  BDI 1993    0
8113         7                        Cameroon  CMR 1993    0
8114         8                      Cape Verde  CPV 1993    1
8115         9        Central African Republic  CAF 1993    0
8116        10                            Chad  TCD 1993    0
8117        11                         Comoros  COM 1993    0
8118        12                           Congo  COG 1993    0
8119        13                        Djibouti  DJI 1993    1
8120        14                Egypt, Arab Rep.  EGY 1993    0
8121        15                        Ethiopia    . 1993    .
8122        16                           Gabon  GAB 1993    0
8123        17                     Gambia, The  GMB 1993    0
8124        18                           Ghana  GHA 1993    0
8125        19                          Guinea  GIN 1993    0
8126        20                   Guinea-Bissau  GNB 1993    0
8127        21                   Cote d'Ivoire  CIV 1993    0
8128        22                           Kenya  KEN 1993    0
8129        23                         Lesotho  LSO 1993    0
8130        24                         Liberia  LBR 1993    0
8131        25                      Madagascar  MDG 1993    0
8132        26                          Malawi  MWI 1993    0
8133        27                            Mali  MLI 1993    0
8134        28                      Mauritania  MRT 1993    0
8135        29                       Mauritius  MUS 1993    0
8136        30                         Morocco  MAR 1993    1
8137        31                      Mozambique  MOZ 1993    0
8138        32                           Niger  NER 1993    0
8139        33                         Nigeria  NGA 1993    0
8140        34                          Rwanda  RWA 1993    0
8141        35                         Senegal  SEN 1993    0
8142        36                      Seychelles  SYC 1993    0
8143        37                    Sierra Leone  SLE 1993    0
8144        38                         Somalia  SOM 1993    0
8145        39                    South Africa  ZAF 1993    0
8146        40                           Sudan  SDN 1993    0
8147        41                       Swaziland  SWZ 1993    0
8148        42                        Tanzania  TZA 1993    0
8149        43                            Togo  TGO 1993    0
8150        44                         Tunisia  TUN 1993    0
8151        45                          Uganda  UGA 1993    0
8152        46                           Zaire  ZAR 1993    0
8153        47                          Zambia  ZMB 1993    0
8154        48                        Zimbabwe  ZWE 1993    0
8155        49                    Bahamas, The  BHS 1993    0
8156        50                        Barbados  BRB 1993    0
8157        51                          Belize  BLZ 1993    0
8158        52                          Canada  CAN 1993    0
8159        53                      Costa Rica  CRI 1993    0
8160        54              Dominican Republic  DOM 1993    0
8161        55                     El Salvador  SLV 1993    0
8162        56                         Grenada  GRD 1993    0
8163        57                       Guatemala  GTM 1993    0
8164        58                           Haiti  HTI 1993    0
8165        59                        Honduras  HND 1993    0
8166        60                         Jamaica  JAM 1993    0
8167        61                          Mexico  MEX 1993    0
8168        62                       Nicaragua  NIC 1993    0
8169        63                          Panama  PAN 1993    0
8170        64             Trinidad and Tobago  TTO 1993    0
8171        66                       Argentina  ARG 1993    0
8172        67                         Bolivia  BOL 1993    0
8173        68                          Brazil  BRA 1993    1
8174        69                           Chile  CHL 1993    0
8175        70                        Colombia  COL 1993    0
8176        71                         Ecuador  ECU 1993    0
8177        72                          Guyana  GUY 1993    0
8178        73                        Paraguay  PRY 1993    0
8179        74                            Peru  PER 1993    0
8180        75                        Suriname  SUR 1993    0
8181        76                         Uruguay  URY 1993    0
8182        77                       Venezuela  VEN 1993    1
8183        78                      Bangladesh  BGD 1993    0
8184        80                           India  IND 1993    0
8185        81                       Indonesia  IDN 1993    0
8186        82              Iran, Islamic Rep.  IRN 1993    0
8187        83                            Iraq  IRQ 1993    0
8188        84                          Israel  ISR 1993    0
8189        85                           Japan  JPN 1993    1
8190        86                          Jordan  JOR 1993    0
8191        87             Korea, South (Rep.)  KOR 1993    0
8192        88                        Laos PDR  LAO 1993    0
8193        89                        Malaysia  MYS 1993    0
8194        90                        Mongolia  MNG 1993    0
8195        91                         Myanmar  MMR 1993    0
8196        92                           Nepal  NPL 1993    0
8197        93                        Pakistan  PAK 1993    1
8198        94                     Philippines  PHL 1993    0
8199        95                       Singapore  SGP 1993    0
8200        96                       Sri Lanka  LKA 1993    0
8201        97            Syrian Arab Republic  SYR 1993    0
8202        98                          Taiwan    . 1993    0
8203        99                        Thailand  THA 1993    0
8204       100             Yemen Arab Republic    . 1993    .
8205       101                         Austria  AUT 1993    0
8206       102                         Belgium  BEL 1993    0
8207       103                        Bulgaria  BGR 1993    0
8208       104                  Czechoslovakia    . 1993    .
8209       105                         Denmark  DNK 1993    0
8210       106                         Finland  FIN 1993    0
8211       108                   Germany, West    . 1993    .
8212       109                   Germany, East    . 1993    .
8213       110                          Greece  GRC 1993    0
8214       111                         Hungary  HUN 1993    1
8215       112                         Iceland  ISL 1993    0
8216       113                         Ireland  IRL 1993    0
8217       114                           Italy  ITA 1993    0
8218       115                      Luxembourg  LUX 1993    0
8219       116                           Malta  MLT 1993    0
8220       117                     Netherlands  NLD 1993    0
8221       118                          Norway  NOR 1993    0
8222       119                          Poland  POL 1993    0
8223       120                        Portugal  PRT 1993    0
8224       121                         Romania  ROM 1993    0
8225       122                           Spain  ESP 1993    1
8226       123                          Sweden  SWE 1993    0
8227       124                     Switzerland  CHE 1993    0
8228       125                          Turkey  TUR 1993    0
8229       128                      Yugoslavia    . 1993    .
8230       129                       Australia  AUS 1993    0
8231       130                            Fiji  FJI 1993    0
8232       131                     New Zealand  NZL 1993    1
8233       132                Papua New Guinea  PNG 1993    0
8234       133                 Solomon Islands  SLB 1993    0
8235       134                         Vanuatu  VUT 1993    0
8236       135                   Western Samoa  WSM 1993    0
8237       136                         Bahrain  BHR 1993    0
8238       137                          Kuwait  KWT 1993    0
8239       138                            Oman  OMN 1993    0
8240       139                           Qatar  QAT 1993    0
8241       140                    Saudi Arabia  SAU 1993    0
8242       141            United Arab Emirates  ARE 1993    0
8243       142                     Afghanistan  AFG 1993    0
8244       143                         Albania  ALB 1993    0
8245       144                         Antigua  ATG 1993    0
8246       145                         Armenia  ARM 1993    0
8247       146                           Nauru    . 1993    0
8248       147                      Azerbaijan  AZE 1993    0
8249       148                          Bhutan  BTN 1993    0
8250       149                         Belarus  BLR 1993    0
8251       150              Bosnia-Herzegovina  BIH 1993    0
8252       151                          Brunei  BRN 1993    0
8253       152                        Cambodia  KHM 1993    0
8254       153                         Croatia  HRV 1993    0
8255       154                            Cuba  CUB 1993    0
8256       155                  Czech Republic  CZE 1993    0
8257       156                 Slovak Republic  SVK 1993    0
8258       157                        Dominica  DMA 1993    0
8259       158               Equatorial Guinea  GNQ 1993    0
8260       159                         Estonia  EST 1993    0
8261       160                         Eritrea  ERI 1993    0
8262       161                         Georgia  GEO 1993    0
8263       162                      Kazakhstan  KAZ 1993    0
8264       163                        Kiribati  KIR 1993    0
8265       164        Korea, North (Dem. Rep.)  PRK 1993    0
8266       165                      Kyrgyzstan  KGZ 1993    0
8267       166                          Latvia  LVA 1993    0
8268       167                         Lebanon  LBN 1993    0
8269       168                       Lithuania  LTU 1993    0
8270       169                       Macedonia  MKD 1993    0
8271       170                 Maldive Islands  MDV 1993    0
8272       171                         Moldova  MDA 1993    0
8273       172                         Namibia  NAM 1993    0
8274       174                       St. Lucia  LCA 1993    0
8275       175           Sao Tome and Principe  STP 1993    0
8276       176                        Slovenia  SVN 1993    0
8277       177                      Somaliland    . 1993    0
8278       178               Yemen PDR (South)    . 1993    .
8279       179             St. Kitts and Nevis  KNA 1993    0
8280       180                     St. Vincent  VCT 1993    0
8281       181                      Tajikistan  TJK 1993    0
8282       182                    Turkmenistan  TKM 1993    0
8283       183                         Ukraine  UKR 1993    0
8284       184                           Tonga  TON 1993    0
8285       185                      Uzbekistan  UZB 1993    0
8286       186                         Vietnam  VNM 1993    0
8287       187                          Cyprus  CYP 1993    .
8288       188                    Greek Cyprus    . 1993    0
8289       189 Micronesia, Federated States of  FSM 1993    0
8290       190               Republic of Yemen  YEM 1993    0
8291       191                         Germany  DEU 1993    0
8292       192                     Yugoslavia2  YUG 1993    0
8293       193                           Libya  LBY 1993    0
8294       194                       Ethiopia2  ETH 1993    0
8295       195                         Andorra  ADO 1993    0
8296       196                   Liechtenstein  LIE 1993    0
8297       197                Marshall Islands  MHL 1993    0
8298       198                           Palau  PLW 1993    .
8299       199                      San Marino  SMR 1993    0
8300         1                         Algeria  DZA 1994    0
8301         2                          Angola  AGO 1994    0
8302         3                           Benin  BEN 1994    0
8303         4                        Botswana  BWA 1994    0
8304         5                    Burkina Faso  BFA 1994    0
8305         6                         Burundi  BDI 1994    0
8306         7                        Cameroon  CMR 1994    0
8307         8                      Cape Verde  CPV 1994    0
8308         9        Central African Republic  CAF 1994    0
8309        10                            Chad  TCD 1994    0
8310        11                         Comoros  COM 1994    0
8311        12                           Congo  COG 1994    0
8312        13                        Djibouti  DJI 1994    1
8313        14                Egypt, Arab Rep.  EGY 1994    0
8314        15                        Ethiopia    . 1994    .
8315        16                           Gabon  GAB 1994    0
8316        17                     Gambia, The  GMB 1994    0
8317        18                           Ghana  GHA 1994    0
8318        19                          Guinea  GIN 1994    0
8319        20                   Guinea-Bissau  GNB 1994    0
8320        21                   Cote d'Ivoire  CIV 1994    0
8321        22                           Kenya  KEN 1994    0
8322        23                         Lesotho  LSO 1994    0
8323        24                         Liberia  LBR 1994    0
8324        25                      Madagascar  MDG 1994    0
8325        26                          Malawi  MWI 1994    0
8326        27                            Mali  MLI 1994    0
8327        28                      Mauritania  MRT 1994    0
8328        29                       Mauritius  MUS 1994    0
8329        30                         Morocco  MAR 1994    0
8330        31                      Mozambique  MOZ 1994    0
8331        32                           Niger  NER 1994    0
8332        33                         Nigeria  NGA 1994    1
8333        34                          Rwanda  RWA 1994    1
8334        35                         Senegal  SEN 1994    0
8335        36                      Seychelles  SYC 1994    0
8336        37                    Sierra Leone  SLE 1994    0
8337        38                         Somalia  SOM 1994    0
8338        39                    South Africa  ZAF 1994    0
8339        40                           Sudan  SDN 1994    0
8340        41                       Swaziland  SWZ 1994    0
8341        42                        Tanzania  TZA 1994    0
8342        43                            Togo  TGO 1994    0
8343        44                         Tunisia  TUN 1994    0
8344        45                          Uganda  UGA 1994    0
8345        46                           Zaire  ZAR 1994    0
8346        47                          Zambia  ZMB 1994    0
8347        48                        Zimbabwe  ZWE 1994    0
8348        49                    Bahamas, The  BHS 1994    0
8349        50                        Barbados  BRB 1994    0
8350        51                          Belize  BLZ 1994    0
8351        52                          Canada  CAN 1994    0
8352        53                      Costa Rica  CRI 1994    0
8353        54              Dominican Republic  DOM 1994    0
8354        55                     El Salvador  SLV 1994    0
8355        56                         Grenada  GRD 1994    0
8356        57                       Guatemala  GTM 1994    0
8357        58                           Haiti  HTI 1994    0
8358        59                        Honduras  HND 1994    0
8359        60                         Jamaica  JAM 1994    0
8360        61                          Mexico  MEX 1994    0
8361        62                       Nicaragua  NIC 1994    0
8362        63                          Panama  PAN 1994    0
8363        64             Trinidad and Tobago  TTO 1994    0
8364        66                       Argentina  ARG 1994    1
8365        67                         Bolivia  BOL 1994    0
8366        68                          Brazil  BRA 1994    1
8367        69                           Chile  CHL 1994    0
8368        70                        Colombia  COL 1994    0
8369        71                         Ecuador  ECU 1994    0
8370        72                          Guyana  GUY 1994    0
8371        73                        Paraguay  PRY 1994    0
8372        74                            Peru  PER 1994    0
8373        75                        Suriname  SUR 1994    0
8374        76                         Uruguay  URY 1994    0
8375        77                       Venezuela  VEN 1994    0
8376        78                      Bangladesh  BGD 1994    0
8377        80                           India  IND 1994    0
8378        81                       Indonesia  IDN 1994    0
8379        82              Iran, Islamic Rep.  IRN 1994    0
8380        83                            Iraq  IRQ 1994    0
8381        84                          Israel  ISR 1994    0
8382        85                           Japan  JPN 1994    0
8383        86                          Jordan  JOR 1994    0
8384        87             Korea, South (Rep.)  KOR 1994    0
8385        88                        Laos PDR  LAO 1994    0
8386        89                        Malaysia  MYS 1994    0
8387        90                        Mongolia  MNG 1994    0
8388        91                         Myanmar  MMR 1994    0
8389        92                           Nepal  NPL 1994    0
8390        93                        Pakistan  PAK 1994    1
8391        94                     Philippines  PHL 1994    0
8392        95                       Singapore  SGP 1994    0
8393        96                       Sri Lanka  LKA 1994    0
8394        97            Syrian Arab Republic  SYR 1994    0
8395        98                          Taiwan    . 1994    0
8396        99                        Thailand  THA 1994    0
8397       100             Yemen Arab Republic    . 1994    .
8398       101                         Austria  AUT 1994    0
8399       102                         Belgium  BEL 1994    0
8400       103                        Bulgaria  BGR 1994    0
8401       104                  Czechoslovakia    . 1994    .
8402       105                         Denmark  DNK 1994    0
8403       106                         Finland  FIN 1994    0
8404       108                   Germany, West    . 1994    .
8405       109                   Germany, East    . 1994    .
8406       110                          Greece  GRC 1994    0
8407       111                         Hungary  HUN 1994    0
8408       112                         Iceland  ISL 1994    0
8409       113                         Ireland  IRL 1994    0
8410       114                           Italy  ITA 1994    0
8411       115                      Luxembourg  LUX 1994    0
8412       116                           Malta  MLT 1994    0
8413       117                     Netherlands  NLD 1994    0
8414       118                          Norway  NOR 1994    0
8415       119                          Poland  POL 1994    0
8416       120                        Portugal  PRT 1994    0
8417       121                         Romania  ROM 1994    0
8418       122                           Spain  ESP 1994    1
8419       123                          Sweden  SWE 1994    0
8420       124                     Switzerland  CHE 1994    0
8421       125                          Turkey  TUR 1994    0
8422       128                      Yugoslavia    . 1994    .
8423       129                       Australia  AUS 1994    0
8424       130                            Fiji  FJI 1994    0
8425       131                     New Zealand  NZL 1994    1
8426       132                Papua New Guinea  PNG 1994    0
8427       133                 Solomon Islands  SLB 1994    0
8428       134                         Vanuatu  VUT 1994    0
8429       135                   Western Samoa  WSM 1994    0
8430       136                         Bahrain  BHR 1994    0
8431       137                          Kuwait  KWT 1994    0
8432       138                            Oman  OMN 1994    1
8433       139                           Qatar  QAT 1994    0
8434       140                    Saudi Arabia  SAU 1994    0
8435       141            United Arab Emirates  ARE 1994    0
8436       142                     Afghanistan  AFG 1994    0
8437       143                         Albania  ALB 1994    0
8438       144                         Antigua  ATG 1994    0
8439       145                         Armenia  ARM 1994    0
8440       146                           Nauru    . 1994    0
8441       147                      Azerbaijan  AZE 1994    0
8442       148                          Bhutan  BTN 1994    0
8443       149                         Belarus  BLR 1994    0
8444       150              Bosnia-Herzegovina  BIH 1994    0
8445       151                          Brunei  BRN 1994    0
8446       152                        Cambodia  KHM 1994    0
8447       153                         Croatia  HRV 1994    0
8448       154                            Cuba  CUB 1994    0
8449       155                  Czech Republic  CZE 1994    1
8450       156                 Slovak Republic  SVK 1994    0
8451       157                        Dominica  DMA 1994    0
8452       158               Equatorial Guinea  GNQ 1994    0
8453       159                         Estonia  EST 1994    0
8454       160                         Eritrea  ERI 1994    0
8455       161                         Georgia  GEO 1994    0
8456       162                      Kazakhstan  KAZ 1994    0
8457       163                        Kiribati  KIR 1994    0
8458       164        Korea, North (Dem. Rep.)  PRK 1994    0
8459       165                      Kyrgyzstan  KGZ 1994    0
8460       166                          Latvia  LVA 1994    0
8461       167                         Lebanon  LBN 1994    0
8462       168                       Lithuania  LTU 1994    0
8463       169                       Macedonia  MKD 1994    0
8464       170                 Maldive Islands  MDV 1994    0
8465       171                         Moldova  MDA 1994    0
8466       172                         Namibia  NAM 1994    0
8467       174                       St. Lucia  LCA 1994    0
8468       175           Sao Tome and Principe  STP 1994    0
8469       176                        Slovenia  SVN 1994    0
8470       177                      Somaliland    . 1994    0
8471       178               Yemen PDR (South)    . 1994    .
8472       179             St. Kitts and Nevis  KNA 1994    0
8473       180                     St. Vincent  VCT 1994    0
8474       181                      Tajikistan  TJK 1994    0
8475       182                    Turkmenistan  TKM 1994    0
8476       183                         Ukraine  UKR 1994    0
8477       184                           Tonga  TON 1994    0
8478       185                      Uzbekistan  UZB 1994    0
8479       186                         Vietnam  VNM 1994    0
8480       187                          Cyprus  CYP 1994    .
8481       188                    Greek Cyprus    . 1994    0
8482       189 Micronesia, Federated States of  FSM 1994    0
8483       190               Republic of Yemen  YEM 1994    0
8484       191                         Germany  DEU 1994    0
8485       192                     Yugoslavia2  YUG 1994    0
8486       193                           Libya  LBY 1994    0
8487       194                       Ethiopia2  ETH 1994    0
8488       195                         Andorra  ADO 1994    0
8489       196                   Liechtenstein  LIE 1994    0
8490       197                Marshall Islands  MHL 1994    0
8491       198                           Palau  PLW 1994    0
8492       199                      San Marino  SMR 1994    0
8493         1                         Algeria  DZA 1995    0
8494         2                          Angola  AGO 1995    0
8495         3                           Benin  BEN 1995    0
8496         4                        Botswana  BWA 1995    1
8497         5                    Burkina Faso  BFA 1995    0
8498         6                         Burundi  BDI 1995    0
8499         7                        Cameroon  CMR 1995    0
8500         8                      Cape Verde  CPV 1995    0
8501         9        Central African Republic  CAF 1995    0
8502        10                            Chad  TCD 1995    0
8503        11                         Comoros  COM 1995    0
8504        12                           Congo  COG 1995    0
8505        13                        Djibouti  DJI 1995    0
8506        14                Egypt, Arab Rep.  EGY 1995    0
8507        15                        Ethiopia    . 1995    .
8508        16                           Gabon  GAB 1995    0
8509        17                     Gambia, The  GMB 1995    0
8510        18                           Ghana  GHA 1995    0
8511        19                          Guinea  GIN 1995    0
8512        20                   Guinea-Bissau  GNB 1995    0
8513        21                   Cote d'Ivoire  CIV 1995    0
8514        22                           Kenya  KEN 1995    0
8515        23                         Lesotho  LSO 1995    0
8516        24                         Liberia  LBR 1995    0
8517        25                      Madagascar  MDG 1995    0
8518        26                          Malawi  MWI 1995    0
8519        27                            Mali  MLI 1995    0
8520        28                      Mauritania  MRT 1995    0
8521        29                       Mauritius  MUS 1995    0
8522        30                         Morocco  MAR 1995    0
8523        31                      Mozambique  MOZ 1995    0
8524        32                           Niger  NER 1995    0
8525        33                         Nigeria  NGA 1995    1
8526        34                          Rwanda  RWA 1995    1
8527        35                         Senegal  SEN 1995    0
8528        36                      Seychelles  SYC 1995    0
8529        37                    Sierra Leone  SLE 1995    0
8530        38                         Somalia  SOM 1995    0
8531        39                    South Africa  ZAF 1995    0
8532        40                           Sudan  SDN 1995    0
8533        41                       Swaziland  SWZ 1995    0
8534        42                        Tanzania  TZA 1995    0
8535        43                            Togo  TGO 1995    0
8536        44                         Tunisia  TUN 1995    0
8537        45                          Uganda  UGA 1995    0
8538        46                           Zaire  ZAR 1995    0
8539        47                          Zambia  ZMB 1995    0
8540        48                        Zimbabwe  ZWE 1995    0
8541        49                    Bahamas, The  BHS 1995    0
8542        50                        Barbados  BRB 1995    0
8543        51                          Belize  BLZ 1995    0
8544        52                          Canada  CAN 1995    0
8545        53                      Costa Rica  CRI 1995    0
8546        54              Dominican Republic  DOM 1995    0
8547        55                     El Salvador  SLV 1995    0
8548        56                         Grenada  GRD 1995    0
8549        57                       Guatemala  GTM 1995    0
8550        58                           Haiti  HTI 1995    0
8551        59                        Honduras  HND 1995    1
8552        60                         Jamaica  JAM 1995    0
8553        61                          Mexico  MEX 1995    0
8554        62                       Nicaragua  NIC 1995    0
8555        63                          Panama  PAN 1995    0
8556        64             Trinidad and Tobago  TTO 1995    0
8557        66                       Argentina  ARG 1995    1
8558        67                         Bolivia  BOL 1995    0
8559        68                          Brazil  BRA 1995    0
8560        69                           Chile  CHL 1995    0
8561        70                        Colombia  COL 1995    0
8562        71                         Ecuador  ECU 1995    0
8563        72                          Guyana  GUY 1995    0
8564        73                        Paraguay  PRY 1995    0
8565        74                            Peru  PER 1995    0
8566        75                        Suriname  SUR 1995    0
8567        76                         Uruguay  URY 1995    0
8568        77                       Venezuela  VEN 1995    0
8569        78                      Bangladesh  BGD 1995    0
8570        80                           India  IND 1995    0
8571        81                       Indonesia  IDN 1995    1
8572        82              Iran, Islamic Rep.  IRN 1995    0
8573        83                            Iraq  IRQ 1995    0
8574        84                          Israel  ISR 1995    0
8575        85                           Japan  JPN 1995    0
8576        86                          Jordan  JOR 1995    0
8577        87             Korea, South (Rep.)  KOR 1995    0
8578        88                        Laos PDR  LAO 1995    0
8579        89                        Malaysia  MYS 1995    0
8580        90                        Mongolia  MNG 1995    0
8581        91                         Myanmar  MMR 1995    0
8582        92                           Nepal  NPL 1995    0
8583        93                        Pakistan  PAK 1995    0
8584        94                     Philippines  PHL 1995    0
8585        95                       Singapore  SGP 1995    0
8586        96                       Sri Lanka  LKA 1995    0
8587        97            Syrian Arab Republic  SYR 1995    0
8588        98                          Taiwan    . 1995    0
8589        99                        Thailand  THA 1995    0
8590       100             Yemen Arab Republic    . 1995    .
8591       101                         Austria  AUT 1995    0
8592       102                         Belgium  BEL 1995    0
8593       103                        Bulgaria  BGR 1995    0
8594       104                  Czechoslovakia    . 1995    .
8595       105                         Denmark  DNK 1995    0
8596       106                         Finland  FIN 1995    0
8597       108                   Germany, West    . 1995    .
8598       109                   Germany, East    . 1995    .
8599       110                          Greece  GRC 1995    0
8600       111                         Hungary  HUN 1995    0
8601       112                         Iceland  ISL 1995    0
8602       113                         Ireland  IRL 1995    0
8603       114                           Italy  ITA 1995    1
8604       115                      Luxembourg  LUX 1995    0
8605       116                           Malta  MLT 1995    0
8606       117                     Netherlands  NLD 1995    0
8607       118                          Norway  NOR 1995    0
8608       119                          Poland  POL 1995    0
8609       120                        Portugal  PRT 1995    0
8610       121                         Romania  ROM 1995    0
8611       122                           Spain  ESP 1995    0
8612       123                          Sweden  SWE 1995    0
8613       124                     Switzerland  CHE 1995    0
8614       125                          Turkey  TUR 1995    0
8615       128                      Yugoslavia    . 1995    .
8616       129                       Australia  AUS 1995    0
8617       130                            Fiji  FJI 1995    0
8618       131                     New Zealand  NZL 1995    0
8619       132                Papua New Guinea  PNG 1995    0
8620       133                 Solomon Islands  SLB 1995    0
8621       134                         Vanuatu  VUT 1995    0
8622       135                   Western Samoa  WSM 1995    0
8623       136                         Bahrain  BHR 1995    0
8624       137                          Kuwait  KWT 1995    0
8625       138                            Oman  OMN 1995    1
8626       139                           Qatar  QAT 1995    0
8627       140                    Saudi Arabia  SAU 1995    0
8628       141            United Arab Emirates  ARE 1995    0
8629       142                     Afghanistan  AFG 1995    0
8630       143                         Albania  ALB 1995    0
8631       144                         Antigua  ATG 1995    0
8632       145                         Armenia  ARM 1995    0
8633       146                           Nauru    . 1995    0
8634       147                      Azerbaijan  AZE 1995    0
8635       148                          Bhutan  BTN 1995    0
8636       149                         Belarus  BLR 1995    0
8637       150              Bosnia-Herzegovina  BIH 1995    0
8638       151                          Brunei  BRN 1995    0
8639       152                        Cambodia  KHM 1995    0
8640       153                         Croatia  HRV 1995    0
8641       154                            Cuba  CUB 1995    0
8642       155                  Czech Republic  CZE 1995    1
8643       156                 Slovak Republic  SVK 1995    0
8644       157                        Dominica  DMA 1995    0
8645       158               Equatorial Guinea  GNQ 1995    0
8646       159                         Estonia  EST 1995    0
8647       160                         Eritrea  ERI 1995    0
8648       161                         Georgia  GEO 1995    0
8649       162                      Kazakhstan  KAZ 1995    0
8650       163                        Kiribati  KIR 1995    0
8651       164        Korea, North (Dem. Rep.)  PRK 1995    0
8652       165                      Kyrgyzstan  KGZ 1995    0
8653       166                          Latvia  LVA 1995    0
8654       167                         Lebanon  LBN 1995    0
8655       168                       Lithuania  LTU 1995    0
8656       169                       Macedonia  MKD 1995    0
8657       170                 Maldive Islands  MDV 1995    0
8658       171                         Moldova  MDA 1995    0
8659       172                         Namibia  NAM 1995    0
8660       174                       St. Lucia  LCA 1995    0
8661       175           Sao Tome and Principe  STP 1995    0
8662       176                        Slovenia  SVN 1995    0
8663       177                      Somaliland    . 1995    0
8664       178               Yemen PDR (South)    . 1995    .
8665       179             St. Kitts and Nevis  KNA 1995    0
8666       180                     St. Vincent  VCT 1995    0
8667       181                      Tajikistan  TJK 1995    0
8668       182                    Turkmenistan  TKM 1995    0
8669       183                         Ukraine  UKR 1995    0
8670       184                           Tonga  TON 1995    0
8671       185                      Uzbekistan  UZB 1995    0
8672       186                         Vietnam  VNM 1995    0
8673       187                          Cyprus  CYP 1995    .
8674       188                    Greek Cyprus    . 1995    0
8675       189 Micronesia, Federated States of  FSM 1995    0
8676       190               Republic of Yemen  YEM 1995    0
8677       191                         Germany  DEU 1995    1
8678       192                     Yugoslavia2  YUG 1995    0
8679       193                           Libya  LBY 1995    0
8680       194                       Ethiopia2  ETH 1995    0
8681       195                         Andorra  ADO 1995    0
8682       196                   Liechtenstein  LIE 1995    0
8683       197                Marshall Islands  MHL 1995    0
8684       198                           Palau  PLW 1995    0
8685       199                      San Marino  SMR 1995    0
8686         1                         Algeria  DZA 1996    0
8687         2                          Angola  AGO 1996    0
8688         3                           Benin  BEN 1996    0
8689         4                        Botswana  BWA 1996    1
8690         5                    Burkina Faso  BFA 1996    0
8691         6                         Burundi  BDI 1996    0
8692         7                        Cameroon  CMR 1996    0
8693         8                      Cape Verde  CPV 1996    0
8694         9        Central African Republic  CAF 1996    0
8695        10                            Chad  TCD 1996    0
8696        11                         Comoros  COM 1996    0
8697        12                           Congo  COG 1996    0
8698        13                        Djibouti  DJI 1996    0
8699        14                Egypt, Arab Rep.  EGY 1996    1
8700        15                        Ethiopia    . 1996    .
8701        16                           Gabon  GAB 1996    0
8702        17                     Gambia, The  GMB 1996    0
8703        18                           Ghana  GHA 1996    0
8704        19                          Guinea  GIN 1996    0
8705        20                   Guinea-Bissau  GNB 1996    1
8706        21                   Cote d'Ivoire  CIV 1996    0
8707        22                           Kenya  KEN 1996    0
8708        23                         Lesotho  LSO 1996    0
8709        24                         Liberia  LBR 1996    0
8710        25                      Madagascar  MDG 1996    0
8711        26                          Malawi  MWI 1996    0
8712        27                            Mali  MLI 1996    0
8713        28                      Mauritania  MRT 1996    0
8714        29                       Mauritius  MUS 1996    0
8715        30                         Morocco  MAR 1996    0
8716        31                      Mozambique  MOZ 1996    0
8717        32                           Niger  NER 1996    0
8718        33                         Nigeria  NGA 1996    0
8719        34                          Rwanda  RWA 1996    0
8720        35                         Senegal  SEN 1996    0
8721        36                      Seychelles  SYC 1996    0
8722        37                    Sierra Leone  SLE 1996    0
8723        38                         Somalia  SOM 1996    0
8724        39                    South Africa  ZAF 1996    0
8725        40                           Sudan  SDN 1996    0
8726        41                       Swaziland  SWZ 1996    0
8727        42                        Tanzania  TZA 1996    0
8728        43                            Togo  TGO 1996    0
8729        44                         Tunisia  TUN 1996    0
8730        45                          Uganda  UGA 1996    0
8731        46                           Zaire  ZAR 1996    0
8732        47                          Zambia  ZMB 1996    0
8733        48                        Zimbabwe  ZWE 1996    0
8734        49                    Bahamas, The  BHS 1996    0
8735        50                        Barbados  BRB 1996    0
8736        51                          Belize  BLZ 1996    0
8737        52                          Canada  CAN 1996    0
8738        53                      Costa Rica  CRI 1996    0
8739        54              Dominican Republic  DOM 1996    0
8740        55                     El Salvador  SLV 1996    0
8741        56                         Grenada  GRD 1996    0
8742        57                       Guatemala  GTM 1996    0
8743        58                           Haiti  HTI 1996    0
8744        59                        Honduras  HND 1996    1
8745        60                         Jamaica  JAM 1996    0
8746        61                          Mexico  MEX 1996    0
8747        62                       Nicaragua  NIC 1996    0
8748        63                          Panama  PAN 1996    0
8749        64             Trinidad and Tobago  TTO 1996    0
8750        66                       Argentina  ARG 1996    0
8751        67                         Bolivia  BOL 1996    0
8752        68                          Brazil  BRA 1996    0
8753        69                           Chile  CHL 1996    1
8754        70                        Colombia  COL 1996    0
8755        71                         Ecuador  ECU 1996    0
8756        72                          Guyana  GUY 1996    0
8757        73                        Paraguay  PRY 1996    0
8758        74                            Peru  PER 1996    0
8759        75                        Suriname  SUR 1996    0
8760        76                         Uruguay  URY 1996    0
8761        77                       Venezuela  VEN 1996    0
8762        78                      Bangladesh  BGD 1996    0
8763        80                           India  IND 1996    0
8764        81                       Indonesia  IDN 1996    1
8765        82              Iran, Islamic Rep.  IRN 1996    0
8766        83                            Iraq  IRQ 1996    0
8767        84                          Israel  ISR 1996    0
8768        85                           Japan  JPN 1996    0
8769        86                          Jordan  JOR 1996    0
8770        87             Korea, South (Rep.)  KOR 1996    1
8771        88                        Laos PDR  LAO 1996    0
8772        89                        Malaysia  MYS 1996    0
8773        90                        Mongolia  MNG 1996    0
8774        91                         Myanmar  MMR 1996    0
8775        92                           Nepal  NPL 1996    0
8776        93                        Pakistan  PAK 1996    0
8777        94                     Philippines  PHL 1996    0
8778        95                       Singapore  SGP 1996    0
8779        96                       Sri Lanka  LKA 1996    0
8780        97            Syrian Arab Republic  SYR 1996    0
8781        98                          Taiwan    . 1996    0
8782        99                        Thailand  THA 1996    0
8783       100             Yemen Arab Republic    . 1996    .
8784       101                         Austria  AUT 1996    0
8785       102                         Belgium  BEL 1996    0
8786       103                        Bulgaria  BGR 1996    0
8787       104                  Czechoslovakia    . 1996    .
8788       105                         Denmark  DNK 1996    0
8789       106                         Finland  FIN 1996    0
8790       108                   Germany, West    . 1996    .
8791       109                   Germany, East    . 1996    .
8792       110                          Greece  GRC 1996    0
8793       111                         Hungary  HUN 1996    0
8794       112                         Iceland  ISL 1996    0
8795       113                         Ireland  IRL 1996    0
8796       114                           Italy  ITA 1996    1
8797       115                      Luxembourg  LUX 1996    0
8798       116                           Malta  MLT 1996    0
8799       117                     Netherlands  NLD 1996    0
8800       118                          Norway  NOR 1996    0
8801       119                          Poland  POL 1996    1
8802       120                        Portugal  PRT 1996    0
8803       121                         Romania  ROM 1996    0
8804       122                           Spain  ESP 1996    0
8805       123                          Sweden  SWE 1996    0
8806       124                     Switzerland  CHE 1996    0
8807       125                          Turkey  TUR 1996    0
8808       128                      Yugoslavia    . 1996    .
8809       129                       Australia  AUS 1996    0
8810       130                            Fiji  FJI 1996    0
8811       131                     New Zealand  NZL 1996    0
8812       132                Papua New Guinea  PNG 1996    0
8813       133                 Solomon Islands  SLB 1996    0
8814       134                         Vanuatu  VUT 1996    0
8815       135                   Western Samoa  WSM 1996    0
8816       136                         Bahrain  BHR 1996    0
8817       137                          Kuwait  KWT 1996    0
8818       138                            Oman  OMN 1996    0
8819       139                           Qatar  QAT 1996    0
8820       140                    Saudi Arabia  SAU 1996    0
8821       141            United Arab Emirates  ARE 1996    0
8822       142                     Afghanistan  AFG 1996    0
8823       143                         Albania  ALB 1996    0
8824       144                         Antigua  ATG 1996    0
8825       145                         Armenia  ARM 1996    0
8826       146                           Nauru    . 1996    0
8827       147                      Azerbaijan  AZE 1996    0
8828       148                          Bhutan  BTN 1996    0
8829       149                         Belarus  BLR 1996    0
8830       150              Bosnia-Herzegovina  BIH 1996    0
8831       151                          Brunei  BRN 1996    0
8832       152                        Cambodia  KHM 1996    0
8833       153                         Croatia  HRV 1996    0
8834       154                            Cuba  CUB 1996    0
8835       155                  Czech Republic  CZE 1996    0
8836       156                 Slovak Republic  SVK 1996    0
8837       157                        Dominica  DMA 1996    0
8838       158               Equatorial Guinea  GNQ 1996    0
8839       159                         Estonia  EST 1996    0
8840       160                         Eritrea  ERI 1996    0
8841       161                         Georgia  GEO 1996    0
8842       162                      Kazakhstan  KAZ 1996    0
8843       163                        Kiribati  KIR 1996    0
8844       164        Korea, North (Dem. Rep.)  PRK 1996    0
8845       165                      Kyrgyzstan  KGZ 1996    0
8846       166                          Latvia  LVA 1996    0
8847       167                         Lebanon  LBN 1996    0
8848       168                       Lithuania  LTU 1996    0
8849       169                       Macedonia  MKD 1996    0
8850       170                 Maldive Islands  MDV 1996    0
8851       171                         Moldova  MDA 1996    0
8852       172                         Namibia  NAM 1996    0
8853       174                       St. Lucia  LCA 1996    0
8854       175           Sao Tome and Principe  STP 1996    0
8855       176                        Slovenia  SVN 1996    0
8856       177                      Somaliland    . 1996    0
8857       178               Yemen PDR (South)    . 1996    .
8858       179             St. Kitts and Nevis  KNA 1996    0
8859       180                     St. Vincent  VCT 1996    0
8860       181                      Tajikistan  TJK 1996    0
8861       182                    Turkmenistan  TKM 1996    0
8862       183                         Ukraine  UKR 1996    0
8863       184                           Tonga  TON 1996    0
8864       185                      Uzbekistan  UZB 1996    0
8865       186                         Vietnam  VNM 1996    0
8866       187                          Cyprus  CYP 1996    .
8867       188                    Greek Cyprus    . 1996    0
8868       189 Micronesia, Federated States of  FSM 1996    0
8869       190               Republic of Yemen  YEM 1996    0
8870       191                         Germany  DEU 1996    1
8871       192                     Yugoslavia2  YUG 1996    0
8872       193                           Libya  LBY 1996    0
8873       194                       Ethiopia2  ETH 1996    0
8874       195                         Andorra  ADO 1996    0
8875       196                   Liechtenstein  LIE 1996    0
8876       197                Marshall Islands  MHL 1996    0
8877       198                           Palau  PLW 1996    0
8878       199                      San Marino  SMR 1996    0
8879         1                         Algeria  DZA 1997    0
8880         2                          Angola  AGO 1997    0
8881         3                           Benin  BEN 1997    0
8882         4                        Botswana  BWA 1997    0
8883         5                    Burkina Faso  BFA 1997    0
8884         6                         Burundi  BDI 1997    0
8885         7                        Cameroon  CMR 1997    0
8886         8                      Cape Verde  CPV 1997    0
8887         9        Central African Republic  CAF 1997    0
8888        10                            Chad  TCD 1997    0
8889        11                         Comoros  COM 1997    0
8890        12                           Congo  COG 1997    0
8891        13                        Djibouti  DJI 1997    0
8892        14                Egypt, Arab Rep.  EGY 1997    1
8893        15                        Ethiopia    . 1997    .
8894        16                           Gabon  GAB 1997    0
8895        17                     Gambia, The  GMB 1997    0
8896        18                           Ghana  GHA 1997    0
8897        19                          Guinea  GIN 1997    0
8898        20                   Guinea-Bissau  GNB 1997    1
8899        21                   Cote d'Ivoire  CIV 1997    0
8900        22                           Kenya  KEN 1997    1
8901        23                         Lesotho  LSO 1997    0
8902        24                         Liberia  LBR 1997    0
8903        25                      Madagascar  MDG 1997    0
8904        26                          Malawi  MWI 1997    0
8905        27                            Mali  MLI 1997    0
8906        28                      Mauritania  MRT 1997    0
8907        29                       Mauritius  MUS 1997    0
8908        30                         Morocco  MAR 1997    0
8909        31                      Mozambique  MOZ 1997    0
8910        32                           Niger  NER 1997    0
8911        33                         Nigeria  NGA 1997    0
8912        34                          Rwanda  RWA 1997    0
8913        35                         Senegal  SEN 1997    0
8914        36                      Seychelles  SYC 1997    0
8915        37                    Sierra Leone  SLE 1997    0
8916        38                         Somalia  SOM 1997    0
8917        39                    South Africa  ZAF 1997    0
8918        40                           Sudan  SDN 1997    0
8919        41                       Swaziland  SWZ 1997    0
8920        42                        Tanzania  TZA 1997    0
8921        43                            Togo  TGO 1997    0
8922        44                         Tunisia  TUN 1997    0
8923        45                          Uganda  UGA 1997    0
8924        46                           Zaire  ZAR 1997    0
8925        47                          Zambia  ZMB 1997    0
8926        48                        Zimbabwe  ZWE 1997    0
8927        49                    Bahamas, The  BHS 1997    0
8928        50                        Barbados  BRB 1997    0
8929        51                          Belize  BLZ 1997    0
8930        52                          Canada  CAN 1997    0
8931        53                      Costa Rica  CRI 1997    1
8932        54              Dominican Republic  DOM 1997    0
8933        55                     El Salvador  SLV 1997    0
8934        56                         Grenada  GRD 1997    0
8935        57                       Guatemala  GTM 1997    0
8936        58                           Haiti  HTI 1997    0
8937        59                        Honduras  HND 1997    0
8938        60                         Jamaica  JAM 1997    0
8939        61                          Mexico  MEX 1997    0
8940        62                       Nicaragua  NIC 1997    0
8941        63                          Panama  PAN 1997    0
8942        64             Trinidad and Tobago  TTO 1997    0
8943        66                       Argentina  ARG 1997    0
8944        67                         Bolivia  BOL 1997    0
8945        68                          Brazil  BRA 1997    0
8946        69                           Chile  CHL 1997    1
8947        70                        Colombia  COL 1997    0
8948        71                         Ecuador  ECU 1997    0
8949        72                          Guyana  GUY 1997    0
8950        73                        Paraguay  PRY 1997    0
8951        74                            Peru  PER 1997    0
8952        75                        Suriname  SUR 1997    0
8953        76                         Uruguay  URY 1997    0
8954        77                       Venezuela  VEN 1997    0
8955        78                      Bangladesh  BGD 1997    0
8956        80                           India  IND 1997    0
8957        81                       Indonesia  IDN 1997    0
8958        82              Iran, Islamic Rep.  IRN 1997    0
8959        83                            Iraq  IRQ 1997    0
8960        84                          Israel  ISR 1997    0
8961        85                           Japan  JPN 1997    1
8962        86                          Jordan  JOR 1997    0
8963        87             Korea, South (Rep.)  KOR 1997    1
8964        88                        Laos PDR  LAO 1997    0
8965        89                        Malaysia  MYS 1997    0
8966        90                        Mongolia  MNG 1997    0
8967        91                         Myanmar  MMR 1997    0
8968        92                           Nepal  NPL 1997    0
8969        93                        Pakistan  PAK 1997    0
8970        94                     Philippines  PHL 1997    0
8971        95                       Singapore  SGP 1997    0
8972        96                       Sri Lanka  LKA 1997    0
8973        97            Syrian Arab Republic  SYR 1997    0
8974        98                          Taiwan    . 1997    0
8975        99                        Thailand  THA 1997    0
8976       100             Yemen Arab Republic    . 1997    .
8977       101                         Austria  AUT 1997    0
8978       102                         Belgium  BEL 1997    0
8979       103                        Bulgaria  BGR 1997    0
8980       104                  Czechoslovakia    . 1997    .
8981       105                         Denmark  DNK 1997    0
8982       106                         Finland  FIN 1997    0
8983       108                   Germany, West    . 1997    .
8984       109                   Germany, East    . 1997    .
8985       110                          Greece  GRC 1997    0
8986       111                         Hungary  HUN 1997    0
8987       112                         Iceland  ISL 1997    0
8988       113                         Ireland  IRL 1997    0
8989       114                           Italy  ITA 1997    0
8990       115                      Luxembourg  LUX 1997    0
8991       116                           Malta  MLT 1997    0
8992       117                     Netherlands  NLD 1997    0
8993       118                          Norway  NOR 1997    0
8994       119                          Poland  POL 1997    1
8995       120                        Portugal  PRT 1997    1
8996       121                         Romania  ROM 1997    0
8997       122                           Spain  ESP 1997    0
8998       123                          Sweden  SWE 1997    1
8999       124                     Switzerland  CHE 1997    0
9000       125                          Turkey  TUR 1997    0
9001       128                      Yugoslavia    . 1997    .
9002       129                       Australia  AUS 1997    0
9003       130                            Fiji  FJI 1997    0
9004       131                     New Zealand  NZL 1997    0
9005       132                Papua New Guinea  PNG 1997    0
9006       133                 Solomon Islands  SLB 1997    0
9007       134                         Vanuatu  VUT 1997    0
9008       135                   Western Samoa  WSM 1997    0
9009       136                         Bahrain  BHR 1997    0
9010       137                          Kuwait  KWT 1997    0
9011       138                            Oman  OMN 1997    0
9012       139                           Qatar  QAT 1997    0
9013       140                    Saudi Arabia  SAU 1997    0
9014       141            United Arab Emirates  ARE 1997    0
9015       142                     Afghanistan  AFG 1997    0
9016       143                         Albania  ALB 1997    0
9017       144                         Antigua  ATG 1997    0
9018       145                         Armenia  ARM 1997    0
9019       146                           Nauru    . 1997    0
9020       147                      Azerbaijan  AZE 1997    0
9021       148                          Bhutan  BTN 1997    0
9022       149                         Belarus  BLR 1997    0
9023       150              Bosnia-Herzegovina  BIH 1997    0
9024       151                          Brunei  BRN 1997    0
9025       152                        Cambodia  KHM 1997    0
9026       153                         Croatia  HRV 1997    0
9027       154                            Cuba  CUB 1997    0
9028       155                  Czech Republic  CZE 1997    0
9029       156                 Slovak Republic  SVK 1997    0
9030       157                        Dominica  DMA 1997    0
9031       158               Equatorial Guinea  GNQ 1997    0
9032       159                         Estonia  EST 1997    0
9033       160                         Eritrea  ERI 1997    0
9034       161                         Georgia  GEO 1997    0
9035       162                      Kazakhstan  KAZ 1997    0
9036       163                        Kiribati  KIR 1997    0
9037       164        Korea, North (Dem. Rep.)  PRK 1997    0
9038       165                      Kyrgyzstan  KGZ 1997    0
9039       166                          Latvia  LVA 1997    0
9040       167                         Lebanon  LBN 1997    0
9041       168                       Lithuania  LTU 1997    0
9042       169                       Macedonia  MKD 1997    0
9043       170                 Maldive Islands  MDV 1997    0
9044       171                         Moldova  MDA 1997    0
9045       172                         Namibia  NAM 1997    0
9046       174                       St. Lucia  LCA 1997    0
9047       175           Sao Tome and Principe  STP 1997    0
9048       176                        Slovenia  SVN 1997    0
9049       177                      Somaliland    . 1997    0
9050       178               Yemen PDR (South)    . 1997    .
9051       179             St. Kitts and Nevis  KNA 1997    0
9052       180                     St. Vincent  VCT 1997    0
9053       181                      Tajikistan  TJK 1997    0
9054       182                    Turkmenistan  TKM 1997    0
9055       183                         Ukraine  UKR 1997    0
9056       184                           Tonga  TON 1997    0
9057       185                      Uzbekistan  UZB 1997    0
9058       186                         Vietnam  VNM 1997    0
9059       187                          Cyprus  CYP 1997    .
9060       188                    Greek Cyprus    . 1997    0
9061       189 Micronesia, Federated States of  FSM 1997    0
9062       190               Republic of Yemen  YEM 1997    0
9063       191                         Germany  DEU 1997    0
9064       192                     Yugoslavia2  YUG 1997    0
9065       193                           Libya  LBY 1997    0
9066       194                       Ethiopia2  ETH 1997    0
9067       195                         Andorra  ADO 1997    0
9068       196                   Liechtenstein  LIE 1997    0
9069       197                Marshall Islands  MHL 1997    0
9070       198                           Palau  PLW 1997    0
9071       199                      San Marino  SMR 1997    0
9072         1                         Algeria  DZA 1998    0
9073         2                          Angola  AGO 1998    0
9074         3                           Benin  BEN 1998    0
9075         4                        Botswana  BWA 1998    0
9076         5                    Burkina Faso  BFA 1998    0
9077         6                         Burundi  BDI 1998    0
9078         7                        Cameroon  CMR 1998    0
9079         8                      Cape Verde  CPV 1998    0
9080         9        Central African Republic  CAF 1998    0
9081        10                            Chad  TCD 1998    0
9082        11                         Comoros  COM 1998    0
9083        12                           Congo  COG 1998    0
9084        13                        Djibouti  DJI 1998    0
9085        14                Egypt, Arab Rep.  EGY 1998    0
9086        15                        Ethiopia    . 1998    .
9087        16                           Gabon  GAB 1998    1
9088        17                     Gambia, The  GMB 1998    1
9089        18                           Ghana  GHA 1998    0
9090        19                          Guinea  GIN 1998    0
9091        20                   Guinea-Bissau  GNB 1998    0
9092        21                   Cote d'Ivoire  CIV 1998    0
9093        22                           Kenya  KEN 1998    1
9094        23                         Lesotho  LSO 1998    0
9095        24                         Liberia  LBR 1998    0
9096        25                      Madagascar  MDG 1998    0
9097        26                          Malawi  MWI 1998    0
9098        27                            Mali  MLI 1998    0
9099        28                      Mauritania  MRT 1998    0
9100        29                       Mauritius  MUS 1998    0
9101        30                         Morocco  MAR 1998    0
9102        31                      Mozambique  MOZ 1998    0
9103        32                           Niger  NER 1998    0
9104        33                         Nigeria  NGA 1998    0
9105        34                          Rwanda  RWA 1998    0
9106        35                         Senegal  SEN 1998    0
9107        36                      Seychelles  SYC 1998    0
9108        37                    Sierra Leone  SLE 1998    0
9109        38                         Somalia  SOM 1998    0
9110        39                    South Africa  ZAF 1998    0
9111        40                           Sudan  SDN 1998    0
9112        41                       Swaziland  SWZ 1998    0
9113        42                        Tanzania  TZA 1998    0
9114        43                            Togo  TGO 1998    0
9115        44                         Tunisia  TUN 1998    0
9116        45                          Uganda  UGA 1998    0
9117        46                           Zaire  ZAR 1998    0
9118        47                          Zambia  ZMB 1998    0
9119        48                        Zimbabwe  ZWE 1998    0
9120        49                    Bahamas, The  BHS 1998    0
9121        50                        Barbados  BRB 1998    0
9122        51                          Belize  BLZ 1998    0
9123        52                          Canada  CAN 1998    0
9124        53                      Costa Rica  CRI 1998    1
9125        54              Dominican Republic  DOM 1998    0
9126        55                     El Salvador  SLV 1998    0
9127        56                         Grenada  GRD 1998    0
9128        57                       Guatemala  GTM 1998    0
9129        58                           Haiti  HTI 1998    0
9130        59                        Honduras  HND 1998    0
9131        60                         Jamaica  JAM 1998    0
9132        61                          Mexico  MEX 1998    0
9133        62                       Nicaragua  NIC 1998    0
9134        63                          Panama  PAN 1998    0
9135        64             Trinidad and Tobago  TTO 1998    0
9136        66                       Argentina  ARG 1998    0
9137        67                         Bolivia  BOL 1998    0
9138        68                          Brazil  BRA 1998    1
9139        69                           Chile  CHL 1998    0
9140        70                        Colombia  COL 1998    0
9141        71                         Ecuador  ECU 1998    0
9142        72                          Guyana  GUY 1998    0
9143        73                        Paraguay  PRY 1998    0
9144        74                            Peru  PER 1998    0
9145        75                        Suriname  SUR 1998    0
9146        76                         Uruguay  URY 1998    0
9147        77                       Venezuela  VEN 1998    0
9148        78                      Bangladesh  BGD 1998    0
9149        80                           India  IND 1998    0
9150        81                       Indonesia  IDN 1998    0
9151        82              Iran, Islamic Rep.  IRN 1998    0
9152        83                            Iraq  IRQ 1998    0
9153        84                          Israel  ISR 1998    0
9154        85                           Japan  JPN 1998    1
9155        86                          Jordan  JOR 1998    0
9156        87             Korea, South (Rep.)  KOR 1998    0
9157        88                        Laos PDR  LAO 1998    0
9158        89                        Malaysia  MYS 1998    0
9159        90                        Mongolia  MNG 1998    0
9160        91                         Myanmar  MMR 1998    0
9161        92                           Nepal  NPL 1998    0
9162        93                        Pakistan  PAK 1998    0
9163        94                     Philippines  PHL 1998    0
9164        95                       Singapore  SGP 1998    0
9165        96                       Sri Lanka  LKA 1998    0
9166        97            Syrian Arab Republic  SYR 1998    0
9167        98                          Taiwan    . 1998    0
9168        99                        Thailand  THA 1998    0
9169       100             Yemen Arab Republic    . 1998    .
9170       101                         Austria  AUT 1998    0
9171       102                         Belgium  BEL 1998    0
9172       103                        Bulgaria  BGR 1998    0
9173       104                  Czechoslovakia    . 1998    .
9174       105                         Denmark  DNK 1998    0
9175       106                         Finland  FIN 1998    0
9176       108                   Germany, West    . 1998    .
9177       109                   Germany, East    . 1998    .
9178       110                          Greece  GRC 1998    0
9179       111                         Hungary  HUN 1998    0
9180       112                         Iceland  ISL 1998    0
9181       113                         Ireland  IRL 1998    0
9182       114                           Italy  ITA 1998    0
9183       115                      Luxembourg  LUX 1998    0
9184       116                           Malta  MLT 1998    0
9185       117                     Netherlands  NLD 1998    0
9186       118                          Norway  NOR 1998    0
9187       119                          Poland  POL 1998    0
9188       120                        Portugal  PRT 1998    1
9189       121                         Romania  ROM 1998    0
9190       122                           Spain  ESP 1998    0
9191       123                          Sweden  SWE 1998    1
9192       124                     Switzerland  CHE 1998    0
9193       125                          Turkey  TUR 1998    0
9194       128                      Yugoslavia    . 1998    .
9195       129                       Australia  AUS 1998    0
9196       130                            Fiji  FJI 1998    0
9197       131                     New Zealand  NZL 1998    0
9198       132                Papua New Guinea  PNG 1998    0
9199       133                 Solomon Islands  SLB 1998    0
9200       134                         Vanuatu  VUT 1998    0
9201       135                   Western Samoa  WSM 1998    0
9202       136                         Bahrain  BHR 1998    1
9203       137                          Kuwait  KWT 1998    0
9204       138                            Oman  OMN 1998    0
9205       139                           Qatar  QAT 1998    0
9206       140                    Saudi Arabia  SAU 1998    0
9207       141            United Arab Emirates  ARE 1998    0
9208       142                     Afghanistan  AFG 1998    0
9209       143                         Albania  ALB 1998    0
9210       144                         Antigua  ATG 1998    0
9211       145                         Armenia  ARM 1998    0
9212       146                           Nauru    . 1998    0
9213       147                      Azerbaijan  AZE 1998    0
9214       148                          Bhutan  BTN 1998    0
9215       149                         Belarus  BLR 1998    0
9216       150              Bosnia-Herzegovina  BIH 1998    0
9217       151                          Brunei  BRN 1998    0
9218       152                        Cambodia  KHM 1998    0
9219       153                         Croatia  HRV 1998    0
9220       154                            Cuba  CUB 1998    0
9221       155                  Czech Republic  CZE 1998    0
9222       156                 Slovak Republic  SVK 1998    0
9223       157                        Dominica  DMA 1998    0
9224       158               Equatorial Guinea  GNQ 1998    0
9225       159                         Estonia  EST 1998    0
9226       160                         Eritrea  ERI 1998    0
9227       161                         Georgia  GEO 1998    0
9228       162                      Kazakhstan  KAZ 1998    0
9229       163                        Kiribati  KIR 1998    0
9230       164        Korea, North (Dem. Rep.)  PRK 1998    0
9231       165                      Kyrgyzstan  KGZ 1998    0
9232       166                          Latvia  LVA 1998    0
9233       167                         Lebanon  LBN 1998    0
9234       168                       Lithuania  LTU 1998    0
9235       169                       Macedonia  MKD 1998    0
9236       170                 Maldive Islands  MDV 1998    0
9237       171                         Moldova  MDA 1998    0
9238       172                         Namibia  NAM 1998    0
9239       174                       St. Lucia  LCA 1998    0
9240       175           Sao Tome and Principe  STP 1998    0
9241       176                        Slovenia  SVN 1998    1
9242       177                      Somaliland    . 1998    0
9243       178               Yemen PDR (South)    . 1998    .
9244       179             St. Kitts and Nevis  KNA 1998    0
9245       180                     St. Vincent  VCT 1998    0
9246       181                      Tajikistan  TJK 1998    0
9247       182                    Turkmenistan  TKM 1998    0
9248       183                         Ukraine  UKR 1998    0
9249       184                           Tonga  TON 1998    0
9250       185                      Uzbekistan  UZB 1998    0
9251       186                         Vietnam  VNM 1998    0
9252       187                          Cyprus  CYP 1998    .
9253       188                    Greek Cyprus    . 1998    0
9254       189 Micronesia, Federated States of  FSM 1998    0
9255       190               Republic of Yemen  YEM 1998    0
9256       191                         Germany  DEU 1998    0
9257       192                     Yugoslavia2  YUG 1998    0
9258       193                           Libya  LBY 1998    0
9259       194                       Ethiopia2  ETH 1998    0
9260       195                         Andorra  ADO 1998    0
9261       196                   Liechtenstein  LIE 1998    0
9262       197                Marshall Islands  MHL 1998    0
9263       198                           Palau  PLW 1998    0
9264       199                      San Marino  SMR 1998    0
9265         1                         Algeria  DZA 1999    0
9266         2                          Angola  AGO 1999    0
9267         3                           Benin  BEN 1999    0
9268         4                        Botswana  BWA 1999    0
9269         5                    Burkina Faso  BFA 1999    0
9270         6                         Burundi  BDI 1999    0
9271         7                        Cameroon  CMR 1999    0
9272         8                      Cape Verde  CPV 1999    0
9273         9        Central African Republic  CAF 1999    0
9274        10                            Chad  TCD 1999    0
9275        11                         Comoros  COM 1999    0
9276        12                           Congo  COG 1999    0
9277        13                        Djibouti  DJI 1999    0
9278        14                Egypt, Arab Rep.  EGY 1999    0
9279        15                        Ethiopia    . 1999    .
9280        16                           Gabon  GAB 1999    1
9281        17                     Gambia, The  GMB 1999    1
9282        18                           Ghana  GHA 1999    0
9283        19                          Guinea  GIN 1999    0
9284        20                   Guinea-Bissau  GNB 1999    0
9285        21                   Cote d'Ivoire  CIV 1999    0
9286        22                           Kenya  KEN 1999    0
9287        23                         Lesotho  LSO 1999    0
9288        24                         Liberia  LBR 1999    0
9289        25                      Madagascar  MDG 1999    0
9290        26                          Malawi  MWI 1999    0
9291        27                            Mali  MLI 1999    0
9292        28                      Mauritania  MRT 1999    0
9293        29                       Mauritius  MUS 1999    0
9294        30                         Morocco  MAR 1999    0
9295        31                      Mozambique  MOZ 1999    0
9296        32                           Niger  NER 1999    0
9297        33                         Nigeria  NGA 1999    0
9298        34                          Rwanda  RWA 1999    0
9299        35                         Senegal  SEN 1999    0
9300        36                      Seychelles  SYC 1999    0
9301        37                    Sierra Leone  SLE 1999    0
9302        38                         Somalia  SOM 1999    0
9303        39                    South Africa  ZAF 1999    0
9304        40                           Sudan  SDN 1999    0
9305        41                       Swaziland  SWZ 1999    0
9306        42                        Tanzania  TZA 1999    0
9307        43                            Togo  TGO 1999    0
9308        44                         Tunisia  TUN 1999    0
9309        45                          Uganda  UGA 1999    0
9310        46                           Zaire  ZAR 1999    0
9311        47                          Zambia  ZMB 1999    0
9312        48                        Zimbabwe  ZWE 1999    0
9313        49                    Bahamas, The  BHS 1999    0
9314        50                        Barbados  BRB 1999    0
9315        51                          Belize  BLZ 1999    0
9316        52                          Canada  CAN 1999    1
9317        53                      Costa Rica  CRI 1999    0
9318        54              Dominican Republic  DOM 1999    0
9319        55                     El Salvador  SLV 1999    0
9320        56                         Grenada  GRD 1999    0
9321        57                       Guatemala  GTM 1999    0
9322        58                           Haiti  HTI 1999    0
9323        59                        Honduras  HND 1999    0
9324        60                         Jamaica  JAM 1999    0
9325        61                          Mexico  MEX 1999    0
9326        62                       Nicaragua  NIC 1999    0
9327        63                          Panama  PAN 1999    0
9328        64             Trinidad and Tobago  TTO 1999    0
9329        66                       Argentina  ARG 1999    1
9330        67                         Bolivia  BOL 1999    0
9331        68                          Brazil  BRA 1999    1
9332        69                           Chile  CHL 1999    0
9333        70                        Colombia  COL 1999    0
9334        71                         Ecuador  ECU 1999    0
9335        72                          Guyana  GUY 1999    0
9336        73                        Paraguay  PRY 1999    0
9337        74                            Peru  PER 1999    0
9338        75                        Suriname  SUR 1999    0
9339        76                         Uruguay  URY 1999    0
9340        77                       Venezuela  VEN 1999    0
9341        78                      Bangladesh  BGD 1999    0
9342        80                           India  IND 1999    0
9343        81                       Indonesia  IDN 1999    0
9344        82              Iran, Islamic Rep.  IRN 1999    0
9345        83                            Iraq  IRQ 1999    0
9346        84                          Israel  ISR 1999    0
9347        85                           Japan  JPN 1999    0
9348        86                          Jordan  JOR 1999    0
9349        87             Korea, South (Rep.)  KOR 1999    0
9350        88                        Laos PDR  LAO 1999    0
9351        89                        Malaysia  MYS 1999    1
9352        90                        Mongolia  MNG 1999    0
9353        91                         Myanmar  MMR 1999    0
9354        92                           Nepal  NPL 1999    0
9355        93                        Pakistan  PAK 1999    0
9356        94                     Philippines  PHL 1999    0
9357        95                       Singapore  SGP 1999    0
9358        96                       Sri Lanka  LKA 1999    0
9359        97            Syrian Arab Republic  SYR 1999    0
9360        98                          Taiwan    . 1999    0
9361        99                        Thailand  THA 1999    0
9362       100             Yemen Arab Republic    . 1999    .
9363       101                         Austria  AUT 1999    0
9364       102                         Belgium  BEL 1999    0
9365       103                        Bulgaria  BGR 1999    0
9366       104                  Czechoslovakia    . 1999    .
9367       105                         Denmark  DNK 1999    0
9368       106                         Finland  FIN 1999    0
9369       108                   Germany, West    . 1999    .
9370       109                   Germany, East    . 1999    .
9371       110                          Greece  GRC 1999    0
9372       111                         Hungary  HUN 1999    0
9373       112                         Iceland  ISL 1999    0
9374       113                         Ireland  IRL 1999    0
9375       114                           Italy  ITA 1999    0
9376       115                      Luxembourg  LUX 1999    0
9377       116                           Malta  MLT 1999    0
9378       117                     Netherlands  NLD 1999    1
9379       118                          Norway  NOR 1999    0
9380       119                          Poland  POL 1999    0
9381       120                        Portugal  PRT 1999    0
9382       121                         Romania  ROM 1999    0
9383       122                           Spain  ESP 1999    0
9384       123                          Sweden  SWE 1999    0
9385       124                     Switzerland  CHE 1999    0
9386       125                          Turkey  TUR 1999    0
9387       128                      Yugoslavia    . 1999    .
9388       129                       Australia  AUS 1999    0
9389       130                            Fiji  FJI 1999    0
9390       131                     New Zealand  NZL 1999    0
9391       132                Papua New Guinea  PNG 1999    0
9392       133                 Solomon Islands  SLB 1999    0
9393       134                         Vanuatu  VUT 1999    0
9394       135                   Western Samoa  WSM 1999    0
9395       136                         Bahrain  BHR 1999    1
9396       137                          Kuwait  KWT 1999    0
9397       138                            Oman  OMN 1999    0
9398       139                           Qatar  QAT 1999    0
9399       140                    Saudi Arabia  SAU 1999    0
9400       141            United Arab Emirates  ARE 1999    0
9401       142                     Afghanistan  AFG 1999    0
9402       143                         Albania  ALB 1999    0
9403       144                         Antigua  ATG 1999    0
9404       145                         Armenia  ARM 1999    0
9405       146                           Nauru    . 1999    0
9406       147                      Azerbaijan  AZE 1999    0
9407       148                          Bhutan  BTN 1999    0
9408       149                         Belarus  BLR 1999    0
9409       150              Bosnia-Herzegovina  BIH 1999    0
9410       151                          Brunei  BRN 1999    0
9411       152                        Cambodia  KHM 1999    0
9412       153                         Croatia  HRV 1999    0
9413       154                            Cuba  CUB 1999    0
9414       155                  Czech Republic  CZE 1999    0
9415       156                 Slovak Republic  SVK 1999    0
9416       157                        Dominica  DMA 1999    0
9417       158               Equatorial Guinea  GNQ 1999    0
9418       159                         Estonia  EST 1999    0
9419       160                         Eritrea  ERI 1999    0
9420       161                         Georgia  GEO 1999    0
9421       162                      Kazakhstan  KAZ 1999    0
9422       163                        Kiribati  KIR 1999    0
9423       164        Korea, North (Dem. Rep.)  PRK 1999    0
9424       165                      Kyrgyzstan  KGZ 1999    0
9425       166                          Latvia  LVA 1999    0
9426       167                         Lebanon  LBN 1999    0
9427       168                       Lithuania  LTU 1999    0
9428       169                       Macedonia  MKD 1999    0
9429       170                 Maldive Islands  MDV 1999    0
9430       171                         Moldova  MDA 1999    0
9431       172                         Namibia  NAM 1999    1
9432       174                       St. Lucia  LCA 1999    0
9433       175           Sao Tome and Principe  STP 1999    0
9434       176                        Slovenia  SVN 1999    1
9435       177                      Somaliland    . 1999    0
9436       178               Yemen PDR (South)    . 1999    .
9437       179             St. Kitts and Nevis  KNA 1999    0
9438       180                     St. Vincent  VCT 1999    0
9439       181                      Tajikistan  TJK 1999    0
9440       182                    Turkmenistan  TKM 1999    0
9441       183                         Ukraine  UKR 1999    0
9442       184                           Tonga  TON 1999    0
9443       185                      Uzbekistan  UZB 1999    0
9444       186                         Vietnam  VNM 1999    0
9445       187                          Cyprus  CYP 1999    .
9446       188                    Greek Cyprus    . 1999    0
9447       189 Micronesia, Federated States of  FSM 1999    0
9448       190               Republic of Yemen  YEM 1999    0
9449       191                         Germany  DEU 1999    0
9450       192                     Yugoslavia2  YUG 1999    0
9451       193                           Libya  LBY 1999    0
9452       194                       Ethiopia2  ETH 1999    0
9453       195                         Andorra  ADO 1999    0
9454       196                   Liechtenstein  LIE 1999    0
9455       197                Marshall Islands  MHL 1999    0
9456       198                           Palau  PLW 1999    0
9457       199                      San Marino  SMR 1999    0
9458         1                         Algeria  DZA 2000    0
9459         2                          Angola  AGO 2000    0
9460         3                           Benin  BEN 2000    0
9461         4                        Botswana  BWA 2000    0
9462         5                    Burkina Faso  BFA 2000    0
9463         6                         Burundi  BDI 2000    0
9464         7                        Cameroon  CMR 2000    0
9465         8                      Cape Verde  CPV 2000    0
9466         9        Central African Republic  CAF 2000    0
9467        10                            Chad  TCD 2000    0
9468        11                         Comoros  COM 2000    0
9469        12                           Congo  COG 2000    0
9470        13                        Djibouti  DJI 2000    0
9471        14                Egypt, Arab Rep.  EGY 2000    0
9472        15                        Ethiopia    . 2000    .
9473        16                           Gabon  GAB 2000    0
9474        17                     Gambia, The  GMB 2000    0
9475        18                           Ghana  GHA 2000    0
9476        19                          Guinea  GIN 2000    0
9477        20                   Guinea-Bissau  GNB 2000    0
9478        21                   Cote d'Ivoire  CIV 2000    0
9479        22                           Kenya  KEN 2000    0
9480        23                         Lesotho  LSO 2000    0
9481        24                         Liberia  LBR 2000    0
9482        25                      Madagascar  MDG 2000    0
9483        26                          Malawi  MWI 2000    0
9484        27                            Mali  MLI 2000    1
9485        28                      Mauritania  MRT 2000    0
9486        29                       Mauritius  MUS 2000    0
9487        30                         Morocco  MAR 2000    0
9488        31                      Mozambique  MOZ 2000    0
9489        32                           Niger  NER 2000    0
9490        33                         Nigeria  NGA 2000    0
9491        34                          Rwanda  RWA 2000    0
9492        35                         Senegal  SEN 2000    0
9493        36                      Seychelles  SYC 2000    0
9494        37                    Sierra Leone  SLE 2000    0
9495        38                         Somalia  SOM 2000    0
9496        39                    South Africa  ZAF 2000    0
9497        40                           Sudan  SDN 2000    0
9498        41                       Swaziland  SWZ 2000    0
9499        42                        Tanzania  TZA 2000    0
9500        43                            Togo  TGO 2000    0
9501        44                         Tunisia  TUN 2000    1
9502        45                          Uganda  UGA 2000    0
9503        46                           Zaire  ZAR 2000    0
9504        47                          Zambia  ZMB 2000    0
9505        48                        Zimbabwe  ZWE 2000    0
9506        49                    Bahamas, The  BHS 2000    0
9507        50                        Barbados  BRB 2000    0
9508        51                          Belize  BLZ 2000    0
9509        52                          Canada  CAN 2000    1
9510        53                      Costa Rica  CRI 2000    0
9511        54              Dominican Republic  DOM 2000    0
9512        55                     El Salvador  SLV 2000    0
9513        56                         Grenada  GRD 2000    0
9514        57                       Guatemala  GTM 2000    0
9515        58                           Haiti  HTI 2000    0
9516        59                        Honduras  HND 2000    0
9517        60                         Jamaica  JAM 2000    1
9518        61                          Mexico  MEX 2000    0
9519        62                       Nicaragua  NIC 2000    0
9520        63                          Panama  PAN 2000    0
9521        64             Trinidad and Tobago  TTO 2000    0
9522        66                       Argentina  ARG 2000    1
9523        67                         Bolivia  BOL 2000    0
9524        68                          Brazil  BRA 2000    0
9525        69                           Chile  CHL 2000    0
9526        70                        Colombia  COL 2000    0
9527        71                         Ecuador  ECU 2000    0
9528        72                          Guyana  GUY 2000    0
9529        73                        Paraguay  PRY 2000    0
9530        74                            Peru  PER 2000    0
9531        75                        Suriname  SUR 2000    0
9532        76                         Uruguay  URY 2000    0
9533        77                       Venezuela  VEN 2000    0
9534        78                      Bangladesh  BGD 2000    1
9535        80                           India  IND 2000    0
9536        81                       Indonesia  IDN 2000    0
9537        82              Iran, Islamic Rep.  IRN 2000    0
9538        83                            Iraq  IRQ 2000    0
9539        84                          Israel  ISR 2000    0
9540        85                           Japan  JPN 2000    0
9541        86                          Jordan  JOR 2000    0
9542        87             Korea, South (Rep.)  KOR 2000    0
9543        88                        Laos PDR  LAO 2000    0
9544        89                        Malaysia  MYS 2000    1
9545        90                        Mongolia  MNG 2000    0
9546        91                         Myanmar  MMR 2000    0
9547        92                           Nepal  NPL 2000    0
9548        93                        Pakistan  PAK 2000    0
9549        94                     Philippines  PHL 2000    0
9550        95                       Singapore  SGP 2000    0
9551        96                       Sri Lanka  LKA 2000    0
9552        97            Syrian Arab Republic  SYR 2000    0
9553        98                          Taiwan    . 2000    0
9554        99                        Thailand  THA 2000    0
9555       100             Yemen Arab Republic    . 2000    .
9556       101                         Austria  AUT 2000    0
9557       102                         Belgium  BEL 2000    0
9558       103                        Bulgaria  BGR 2000    0
9559       104                  Czechoslovakia    . 2000    .
9560       105                         Denmark  DNK 2000    0
9561       106                         Finland  FIN 2000    0
9562       108                   Germany, West    . 2000    .
9563       109                   Germany, East    . 2000    .
9564       110                          Greece  GRC 2000    0
9565       111                         Hungary  HUN 2000    0
9566       112                         Iceland  ISL 2000    0
9567       113                         Ireland  IRL 2000    0
9568       114                           Italy  ITA 2000    0
9569       115                      Luxembourg  LUX 2000    0
9570       116                           Malta  MLT 2000    0
9571       117                     Netherlands  NLD 2000    1
9572       118                          Norway  NOR 2000    0
9573       119                          Poland  POL 2000    0
9574       120                        Portugal  PRT 2000    0
9575       121                         Romania  ROM 2000    0
9576       122                           Spain  ESP 2000    0
9577       123                          Sweden  SWE 2000    0
9578       124                     Switzerland  CHE 2000    0
9579       125                          Turkey  TUR 2000    0
9580       128                      Yugoslavia    . 2000    .
9581       129                       Australia  AUS 2000    0
9582       130                            Fiji  FJI 2000    0
9583       131                     New Zealand  NZL 2000    0
9584       132                Papua New Guinea  PNG 2000    0
9585       133                 Solomon Islands  SLB 2000    0
9586       134                         Vanuatu  VUT 2000    0
9587       135                   Western Samoa  WSM 2000    0
9588       136                         Bahrain  BHR 2000    0
9589       137                          Kuwait  KWT 2000    0
9590       138                            Oman  OMN 2000    0
9591       139                           Qatar  QAT 2000    0
9592       140                    Saudi Arabia  SAU 2000    0
9593       141            United Arab Emirates  ARE 2000    0
9594       142                     Afghanistan  AFG 2000    0
9595       143                         Albania  ALB 2000    0
9596       144                         Antigua  ATG 2000    0
9597       145                         Armenia  ARM 2000    0
9598       146                           Nauru    . 2000    0
9599       147                      Azerbaijan  AZE 2000    0
9600       148                          Bhutan  BTN 2000    0
9601       149                         Belarus  BLR 2000    0
9602       150              Bosnia-Herzegovina  BIH 2000    0
9603       151                          Brunei  BRN 2000    0
9604       152                        Cambodia  KHM 2000    0
9605       153                         Croatia  HRV 2000    0
9606       154                            Cuba  CUB 2000    0
9607       155                  Czech Republic  CZE 2000    0
9608       156                 Slovak Republic  SVK 2000    0
9609       157                        Dominica  DMA 2000    0
9610       158               Equatorial Guinea  GNQ 2000    0
9611       159                         Estonia  EST 2000    0
9612       160                         Eritrea  ERI 2000    0
9613       161                         Georgia  GEO 2000    0
9614       162                      Kazakhstan  KAZ 2000    0
9615       163                        Kiribati  KIR 2000    0
9616       164        Korea, North (Dem. Rep.)  PRK 2000    0
9617       165                      Kyrgyzstan  KGZ 2000    0
9618       166                          Latvia  LVA 2000    0
9619       167                         Lebanon  LBN 2000    0
9620       168                       Lithuania  LTU 2000    0
9621       169                       Macedonia  MKD 2000    0
9622       170                 Maldive Islands  MDV 2000    0
9623       171                         Moldova  MDA 2000    0
9624       172                         Namibia  NAM 2000    1
9625       174                       St. Lucia  LCA 2000    0
9626       175           Sao Tome and Principe  STP 2000    0
9627       176                        Slovenia  SVN 2000    0
9628       177                      Somaliland    . 2000    0
9629       178               Yemen PDR (South)    . 2000    .
9630       179             St. Kitts and Nevis  KNA 2000    0
9631       180                     St. Vincent  VCT 2000    0
9632       181                      Tajikistan  TJK 2000    0
9633       182                    Turkmenistan  TKM 2000    0
9634       183                         Ukraine  UKR 2000    1
9635       184                           Tonga  TON 2000    0
9636       185                      Uzbekistan  UZB 2000    0
9637       186                         Vietnam  VNM 2000    0
9638       187                          Cyprus  CYP 2000    .
9639       188                    Greek Cyprus    . 2000    0
9640       189 Micronesia, Federated States of  FSM 2000    0
9641       190               Republic of Yemen  YEM 2000    0
9642       191                         Germany  DEU 2000    0
9643       192                     Yugoslavia2  YUG 2000    0
9644       193                           Libya  LBY 2000    0
9645       194                       Ethiopia2  ETH 2000    0
9646       195                         Andorra  ADO 2000    0
9647       196                   Liechtenstein  LIE 2000    0
9648       197                Marshall Islands  MHL 2000    0
9649       198                           Palau  PLW 2000    0
9650       199                      San Marino  SMR 2000    0
9651         1                         Algeria  DZA 2001    0
9652         2                          Angola  AGO 2001    0
9653         3                           Benin  BEN 2001    0
9654         4                        Botswana  BWA 2001    0
9655         5                    Burkina Faso  BFA 2001    0
9656         6                         Burundi  BDI 2001    0
9657         7                        Cameroon  CMR 2001    0
9658         8                      Cape Verde  CPV 2001    0
9659         9        Central African Republic  CAF 2001    0
9660        10                            Chad  TCD 2001    0
9661        11                         Comoros  COM 2001    0
9662        12                           Congo  COG 2001    0
9663        13                        Djibouti  DJI 2001    0
9664        14                Egypt, Arab Rep.  EGY 2001    0
9665        15                        Ethiopia    . 2001    .
9666        16                           Gabon  GAB 2001    0
9667        17                     Gambia, The  GMB 2001    0
9668        18                           Ghana  GHA 2001    0
9669        19                          Guinea  GIN 2001    0
9670        20                   Guinea-Bissau  GNB 2001    0
9671        21                   Cote d'Ivoire  CIV 2001    0
9672        22                           Kenya  KEN 2001    0
9673        23                         Lesotho  LSO 2001    0
9674        24                         Liberia  LBR 2001    0
9675        25                      Madagascar  MDG 2001    0
9676        26                          Malawi  MWI 2001    0
9677        27                            Mali  MLI 2001    1
9678        28                      Mauritania  MRT 2001    0
9679        29                       Mauritius  MUS 2001    1
9680        30                         Morocco  MAR 2001    0
9681        31                      Mozambique  MOZ 2001    0
9682        32                           Niger  NER 2001    0
9683        33                         Nigeria  NGA 2001    0
9684        34                          Rwanda  RWA 2001    0
9685        35                         Senegal  SEN 2001    0
9686        36                      Seychelles  SYC 2001    0
9687        37                    Sierra Leone  SLE 2001    0
9688        38                         Somalia  SOM 2001    0
9689        39                    South Africa  ZAF 2001    0
9690        40                           Sudan  SDN 2001    0
9691        41                       Swaziland  SWZ 2001    0
9692        42                        Tanzania  TZA 2001    0
9693        43                            Togo  TGO 2001    0
9694        44                         Tunisia  TUN 2001    1
9695        45                          Uganda  UGA 2001    0
9696        46                           Zaire  ZAR 2001    0
9697        47                          Zambia  ZMB 2001    0
9698        48                        Zimbabwe  ZWE 2001    0
9699        49                    Bahamas, The  BHS 2001    0
9700        50                        Barbados  BRB 2001    0
9701        51                          Belize  BLZ 2001    0
9702        52                          Canada  CAN 2001    0
9703        53                      Costa Rica  CRI 2001    0
9704        54              Dominican Republic  DOM 2001    0
9705        55                     El Salvador  SLV 2001    0
9706        56                         Grenada  GRD 2001    0
9707        57                       Guatemala  GTM 2001    0
9708        58                           Haiti  HTI 2001    0
9709        59                        Honduras  HND 2001    0
9710        60                         Jamaica  JAM 2001    1
9711        61                          Mexico  MEX 2001    0
9712        62                       Nicaragua  NIC 2001    0
9713        63                          Panama  PAN 2001    0
9714        64             Trinidad and Tobago  TTO 2001    0
9715        66                       Argentina  ARG 2001    0
9716        67                         Bolivia  BOL 2001    0
9717        68                          Brazil  BRA 2001    0
9718        69                           Chile  CHL 2001    0
9719        70                        Colombia  COL 2001    1
9720        71                         Ecuador  ECU 2001    0
9721        72                          Guyana  GUY 2001    0
9722        73                        Paraguay  PRY 2001    0
9723        74                            Peru  PER 2001    0
9724        75                        Suriname  SUR 2001    0
9725        76                         Uruguay  URY 2001    0
9726        77                       Venezuela  VEN 2001    0
9727        78                      Bangladesh  BGD 2001    1
9728        80                           India  IND 2001    0
9729        81                       Indonesia  IDN 2001    0
9730        82              Iran, Islamic Rep.  IRN 2001    0
9731        83                            Iraq  IRQ 2001    0
9732        84                          Israel  ISR 2001    0
9733        85                           Japan  JPN 2001    0
9734        86                          Jordan  JOR 2001    0
9735        87             Korea, South (Rep.)  KOR 2001    0
9736        88                        Laos PDR  LAO 2001    0
9737        89                        Malaysia  MYS 2001    0
9738        90                        Mongolia  MNG 2001    0
9739        91                         Myanmar  MMR 2001    0
9740        92                           Nepal  NPL 2001    0
9741        93                        Pakistan  PAK 2001    0
9742        94                     Philippines  PHL 2001    0
9743        95                       Singapore  SGP 2001    1
9744        96                       Sri Lanka  LKA 2001    0
9745        97            Syrian Arab Republic  SYR 2001    0
9746        98                          Taiwan    . 2001    0
9747        99                        Thailand  THA 2001    0
9748       100             Yemen Arab Republic    . 2001    .
9749       101                         Austria  AUT 2001    0
9750       102                         Belgium  BEL 2001    0
9751       103                        Bulgaria  BGR 2001    0
9752       104                  Czechoslovakia    . 2001    .
9753       105                         Denmark  DNK 2001    0
9754       106                         Finland  FIN 2001    0
9755       108                   Germany, West    . 2001    .
9756       109                   Germany, East    . 2001    .
9757       110                          Greece  GRC 2001    0
9758       111                         Hungary  HUN 2001    0
9759       112                         Iceland  ISL 2001    0
9760       113                         Ireland  IRL 2001    1
9761       114                           Italy  ITA 2001    0
9762       115                      Luxembourg  LUX 2001    0
9763       116                           Malta  MLT 2001    0
9764       117                     Netherlands  NLD 2001    0
9765       118                          Norway  NOR 2001    1
9766       119                          Poland  POL 2001    0
9767       120                        Portugal  PRT 2001    0
9768       121                         Romania  ROM 2001    0
9769       122                           Spain  ESP 2001    0
9770       123                          Sweden  SWE 2001    0
9771       124                     Switzerland  CHE 2001    0
9772       125                          Turkey  TUR 2001    0
9773       128                      Yugoslavia    . 2001    .
9774       129                       Australia  AUS 2001    0
9775       130                            Fiji  FJI 2001    0
9776       131                     New Zealand  NZL 2001    0
9777       132                Papua New Guinea  PNG 2001    0
9778       133                 Solomon Islands  SLB 2001    0
9779       134                         Vanuatu  VUT 2001    0
9780       135                   Western Samoa  WSM 2001    0
9781       136                         Bahrain  BHR 2001    0
9782       137                          Kuwait  KWT 2001    0
9783       138                            Oman  OMN 2001    0
9784       139                           Qatar  QAT 2001    0
9785       140                    Saudi Arabia  SAU 2001    0
9786       141            United Arab Emirates  ARE 2001    0
9787       142                     Afghanistan  AFG 2001    0
9788       143                         Albania  ALB 2001    0
9789       144                         Antigua  ATG 2001    0
9790       145                         Armenia  ARM 2001    0
9791       146                           Nauru    . 2001    0
9792       147                      Azerbaijan  AZE 2001    0
9793       148                          Bhutan  BTN 2001    0
9794       149                         Belarus  BLR 2001    0
9795       150              Bosnia-Herzegovina  BIH 2001    0
9796       151                          Brunei  BRN 2001    0
9797       152                        Cambodia  KHM 2001    0
9798       153                         Croatia  HRV 2001    0
9799       154                            Cuba  CUB 2001    0
9800       155                  Czech Republic  CZE 2001    0
9801       156                 Slovak Republic  SVK 2001    0
9802       157                        Dominica  DMA 2001    0
9803       158               Equatorial Guinea  GNQ 2001    0
9804       159                         Estonia  EST 2001    0
9805       160                         Eritrea  ERI 2001    0
9806       161                         Georgia  GEO 2001    0
9807       162                      Kazakhstan  KAZ 2001    0
9808       163                        Kiribati  KIR 2001    0
9809       164        Korea, North (Dem. Rep.)  PRK 2001    0
9810       165                      Kyrgyzstan  KGZ 2001    0
9811       166                          Latvia  LVA 2001    0
9812       167                         Lebanon  LBN 2001    0
9813       168                       Lithuania  LTU 2001    0
9814       169                       Macedonia  MKD 2001    0
9815       170                 Maldive Islands  MDV 2001    0
9816       171                         Moldova  MDA 2001    0
9817       172                         Namibia  NAM 2001    0
9818       174                       St. Lucia  LCA 2001    0
9819       175           Sao Tome and Principe  STP 2001    0
9820       176                        Slovenia  SVN 2001    0
9821       177                      Somaliland    . 2001    0
9822       178               Yemen PDR (South)    . 2001    .
9823       179             St. Kitts and Nevis  KNA 2001    0
9824       180                     St. Vincent  VCT 2001    0
9825       181                      Tajikistan  TJK 2001    0
9826       182                    Turkmenistan  TKM 2001    0
9827       183                         Ukraine  UKR 2001    1
9828       184                           Tonga  TON 2001    0
9829       185                      Uzbekistan  UZB 2001    0
9830       186                         Vietnam  VNM 2001    0
9831       187                          Cyprus  CYP 2001    .
9832       188                    Greek Cyprus    . 2001    0
9833       189 Micronesia, Federated States of  FSM 2001    0
9834       190               Republic of Yemen  YEM 2001    0
9835       191                         Germany  DEU 2001    0
9836       192                     Yugoslavia2  YUG 2001    0
9837       193                           Libya  LBY 2001    0
9838       194                       Ethiopia2  ETH 2001    0
9839       195                         Andorra  ADO 2001    0
9840       196                   Liechtenstein  LIE 2001    0
9841       197                Marshall Islands  MHL 2001    0
9842       198                           Palau  PLW 2001    0
9843       199                      San Marino  SMR 2001    0
9844         1                         Algeria  DZA 2002    0
9845         2                          Angola  AGO 2002    0
9846         3                           Benin  BEN 2002    0
9847         4                        Botswana  BWA 2002    0
9848         5                    Burkina Faso  BFA 2002    0
9849         6                         Burundi  BDI 2002    0
9850         7                        Cameroon  CMR 2002    1
9851         8                      Cape Verde  CPV 2002    0
9852         9        Central African Republic  CAF 2002    0
9853        10                            Chad  TCD 2002    0
9854        11                         Comoros  COM 2002    0
9855        12                           Congo  COG 2002    0
9856        13                        Djibouti  DJI 2002    0
9857        14                Egypt, Arab Rep.  EGY 2002    0
9858        15                        Ethiopia    . 2002    .
9859        16                           Gabon  GAB 2002    0
9860        17                     Gambia, The  GMB 2002    0
9861        18                           Ghana  GHA 2002    0
9862        19                          Guinea  GIN 2002    1
9863        20                   Guinea-Bissau  GNB 2002    0
9864        21                   Cote d'Ivoire  CIV 2002    0
9865        22                           Kenya  KEN 2002    0
9866        23                         Lesotho  LSO 2002    0
9867        24                         Liberia  LBR 2002    0
9868        25                      Madagascar  MDG 2002    0
9869        26                          Malawi  MWI 2002    0
9870        27                            Mali  MLI 2002    0
9871        28                      Mauritania  MRT 2002    0
9872        29                       Mauritius  MUS 2002    1
9873        30                         Morocco  MAR 2002    0
9874        31                      Mozambique  MOZ 2002    0
9875        32                           Niger  NER 2002    0
9876        33                         Nigeria  NGA 2002    0
9877        34                          Rwanda  RWA 2002    0
9878        35                         Senegal  SEN 2002    0
9879        36                      Seychelles  SYC 2002    0
9880        37                    Sierra Leone  SLE 2002    0
9881        38                         Somalia  SOM 2002    0
9882        39                    South Africa  ZAF 2002    0
9883        40                           Sudan  SDN 2002    0
9884        41                       Swaziland  SWZ 2002    0
9885        42                        Tanzania  TZA 2002    0
9886        43                            Togo  TGO 2002    0
9887        44                         Tunisia  TUN 2002    0
9888        45                          Uganda  UGA 2002    0
9889        46                           Zaire  ZAR 2002    0
9890        47                          Zambia  ZMB 2002    0
9891        48                        Zimbabwe  ZWE 2002    0
9892        49                    Bahamas, The  BHS 2002    0
9893        50                        Barbados  BRB 2002    0
9894        51                          Belize  BLZ 2002    0
9895        52                          Canada  CAN 2002    0
9896        53                      Costa Rica  CRI 2002    0
9897        54              Dominican Republic  DOM 2002    0
9898        55                     El Salvador  SLV 2002    0
9899        56                         Grenada  GRD 2002    0
9900        57                       Guatemala  GTM 2002    0
9901        58                           Haiti  HTI 2002    0
9902        59                        Honduras  HND 2002    0
9903        60                         Jamaica  JAM 2002    0
9904        61                          Mexico  MEX 2002    1
9905        62                       Nicaragua  NIC 2002    0
9906        63                          Panama  PAN 2002    0
9907        64             Trinidad and Tobago  TTO 2002    0
9908        66                       Argentina  ARG 2002    0
9909        67                         Bolivia  BOL 2002    0
9910        68                          Brazil  BRA 2002    0
9911        69                           Chile  CHL 2002    0
9912        70                        Colombia  COL 2002    1
9913        71                         Ecuador  ECU 2002    0
9914        72                          Guyana  GUY 2002    0
9915        73                        Paraguay  PRY 2002    0
9916        74                            Peru  PER 2002    0
9917        75                        Suriname  SUR 2002    0
9918        76                         Uruguay  URY 2002    0
9919        77                       Venezuela  VEN 2002    0
9920        78                      Bangladesh  BGD 2002    0
9921        80                           India  IND 2002    0
9922        81                       Indonesia  IDN 2002    0
9923        82              Iran, Islamic Rep.  IRN 2002    0
9924        83                            Iraq  IRQ 2002    0
9925        84                          Israel  ISR 2002    0
9926        85                           Japan  JPN 2002    0
9927        86                          Jordan  JOR 2002    0
9928        87             Korea, South (Rep.)  KOR 2002    0
9929        88                        Laos PDR  LAO 2002    0
9930        89                        Malaysia  MYS 2002    0
9931        90                        Mongolia  MNG 2002    0
9932        91                         Myanmar  MMR 2002    0
9933        92                           Nepal  NPL 2002    0
9934        93                        Pakistan  PAK 2002    0
9935        94                     Philippines  PHL 2002    0
9936        95                       Singapore  SGP 2002    1
9937        96                       Sri Lanka  LKA 2002    0
9938        97            Syrian Arab Republic  SYR 2002    1
9939        98                          Taiwan    . 2002    0
9940        99                        Thailand  THA 2002    0
9941       100             Yemen Arab Republic    . 2002    .
9942       101                         Austria  AUT 2002    0
9943       102                         Belgium  BEL 2002    0
9944       103                        Bulgaria  BGR 2002    1
9945       104                  Czechoslovakia    . 2002    .
9946       105                         Denmark  DNK 2002    0
9947       106                         Finland  FIN 2002    0
9948       108                   Germany, West    . 2002    .
9949       109                   Germany, East    . 2002    .
9950       110                          Greece  GRC 2002    0
9951       111                         Hungary  HUN 2002    0
9952       112                         Iceland  ISL 2002    0
9953       113                         Ireland  IRL 2002    1
9954       114                           Italy  ITA 2002    0
9955       115                      Luxembourg  LUX 2002    0
9956       116                           Malta  MLT 2002    0
9957       117                     Netherlands  NLD 2002    0
9958       118                          Norway  NOR 2002    1
9959       119                          Poland  POL 2002    0
9960       120                        Portugal  PRT 2002    0
9961       121                         Romania  ROM 2002    0
9962       122                           Spain  ESP 2002    0
9963       123                          Sweden  SWE 2002    0
9964       124                     Switzerland  CHE 2002    0
9965       125                          Turkey  TUR 2002    0
9966       128                      Yugoslavia    . 2002    .
9967       129                       Australia  AUS 2002    0
9968       130                            Fiji  FJI 2002    0
9969       131                     New Zealand  NZL 2002    0
9970       132                Papua New Guinea  PNG 2002    0
9971       133                 Solomon Islands  SLB 2002    0
9972       134                         Vanuatu  VUT 2002    0
9973       135                   Western Samoa  WSM 2002    0
9974       136                         Bahrain  BHR 2002    0
9975       137                          Kuwait  KWT 2002    0
9976       138                            Oman  OMN 2002    0
9977       139                           Qatar  QAT 2002    0
9978       140                    Saudi Arabia  SAU 2002    0
9979       141            United Arab Emirates  ARE 2002    0
9980       142                     Afghanistan  AFG 2002    0
9981       143                         Albania  ALB 2002    0
9982       144                         Antigua  ATG 2002    0
9983       145                         Armenia  ARM 2002    0
9984       146                           Nauru    . 2002    0
9985       147                      Azerbaijan  AZE 2002    0
9986       148                          Bhutan  BTN 2002    0
9987       149                         Belarus  BLR 2002    0
9988       150              Bosnia-Herzegovina  BIH 2002    0
9989       151                          Brunei  BRN 2002    0
9990       152                        Cambodia  KHM 2002    0
9991       153                         Croatia  HRV 2002    0
9992       154                            Cuba  CUB 2002    0
9993       155                  Czech Republic  CZE 2002    0
9994       156                 Slovak Republic  SVK 2002    0
9995       157                        Dominica  DMA 2002    0
9996       158               Equatorial Guinea  GNQ 2002    0
9997       159                         Estonia  EST 2002    0
9998       160                         Eritrea  ERI 2002    0
9999       161                         Georgia  GEO 2002    0
10000      162                      Kazakhstan  KAZ 2002    0
10001      163                        Kiribati  KIR 2002    0
10002      164        Korea, North (Dem. Rep.)  PRK 2002    0
10003      165                      Kyrgyzstan  KGZ 2002    0
10004      166                          Latvia  LVA 2002    0
10005      167                         Lebanon  LBN 2002    0
10006      168                       Lithuania  LTU 2002    0
10007      169                       Macedonia  MKD 2002    0
10008      170                 Maldive Islands  MDV 2002    0
10009      171                         Moldova  MDA 2002    0
10010      172                         Namibia  NAM 2002    0
10011      174                       St. Lucia  LCA 2002    0
10012      175           Sao Tome and Principe  STP 2002    0
10013      176                        Slovenia  SVN 2002    0
10014      177                      Somaliland    . 2002    0
10015      178               Yemen PDR (South)    . 2002    .
10016      179             St. Kitts and Nevis  KNA 2002    0
10017      180                     St. Vincent  VCT 2002    0
10018      181                      Tajikistan  TJK 2002    0
10019      182                    Turkmenistan  TKM 2002    0
10020      183                         Ukraine  UKR 2002    0
10021      184                           Tonga  TON 2002    0
10022      185                      Uzbekistan  UZB 2002    0
10023      186                         Vietnam  VNM 2002    0
10024      187                          Cyprus  CYP 2002    .
10025      188                    Greek Cyprus    . 2002    0
10026      189 Micronesia, Federated States of  FSM 2002    0
10027      190               Republic of Yemen  YEM 2002    0
10028      191                         Germany  DEU 2002    0
10029      192                     Yugoslavia2  YUG 2002    0
10030      193                           Libya  LBY 2002    0
10031      194                       Ethiopia2  ETH 2002    0
10032      195                         Andorra  ADO 2002    0
10033      196                   Liechtenstein  LIE 2002    0
10034      197                Marshall Islands  MHL 2002    0
10035      198                           Palau  PLW 2002    0
10036      199                      San Marino  SMR 2002    0
10037        1                         Algeria  DZA 2003    0
10038        2                          Angola  AGO 2003    1
10039        3                           Benin  BEN 2003    0
10040        4                        Botswana  BWA 2003    0
10041        5                    Burkina Faso  BFA 2003    0
10042        6                         Burundi  BDI 2003    0
10043        7                        Cameroon  CMR 2003    1
10044        8                      Cape Verde  CPV 2003    0
10045        9        Central African Republic  CAF 2003    0
10046       10                            Chad  TCD 2003    0
10047       11                         Comoros  COM 2003    0
10048       12                           Congo  COG 2003    0
10049       13                        Djibouti  DJI 2003    0
10050       14                Egypt, Arab Rep.  EGY 2003    0
10051       15                        Ethiopia    . 2003    .
10052       16                           Gabon  GAB 2003    0
10053       17                     Gambia, The  GMB 2003    0
10054       18                           Ghana  GHA 2003    0
10055       19                          Guinea  GIN 2003    1
10056       20                   Guinea-Bissau  GNB 2003    0
10057       21                   Cote d'Ivoire  CIV 2003    0
10058       22                           Kenya  KEN 2003    0
10059       23                         Lesotho  LSO 2003    0
10060       24                         Liberia  LBR 2003    0
10061       25                      Madagascar  MDG 2003    0
10062       26                          Malawi  MWI 2003    0
10063       27                            Mali  MLI 2003    0
10064       28                      Mauritania  MRT 2003    0
10065       29                       Mauritius  MUS 2003    0
10066       30                         Morocco  MAR 2003    0
10067       31                      Mozambique  MOZ 2003    0
10068       32                           Niger  NER 2003    0
10069       33                         Nigeria  NGA 2003    0
10070       34                          Rwanda  RWA 2003    0
10071       35                         Senegal  SEN 2003    0
10072       36                      Seychelles  SYC 2003    0
10073       37                    Sierra Leone  SLE 2003    0
10074       38                         Somalia  SOM 2003    0
10075       39                    South Africa  ZAF 2003    0
10076       40                           Sudan  SDN 2003    0
10077       41                       Swaziland  SWZ 2003    0
10078       42                        Tanzania  TZA 2003    0
10079       43                            Togo  TGO 2003    0
10080       44                         Tunisia  TUN 2003    0
10081       45                          Uganda  UGA 2003    0
10082       46                           Zaire  ZAR 2003    0
10083       47                          Zambia  ZMB 2003    0
10084       48                        Zimbabwe  ZWE 2003    0
10085       49                    Bahamas, The  BHS 2003    0
10086       50                        Barbados  BRB 2003    0
10087       51                          Belize  BLZ 2003    0
10088       52                          Canada  CAN 2003    0
10089       53                      Costa Rica  CRI 2003    0
10090       54              Dominican Republic  DOM 2003    0
10091       55                     El Salvador  SLV 2003    0
10092       56                         Grenada  GRD 2003    0
10093       57                       Guatemala  GTM 2003    0
10094       58                           Haiti  HTI 2003    0
10095       59                        Honduras  HND 2003    0
10096       60                         Jamaica  JAM 2003    0
10097       61                          Mexico  MEX 2003    1
10098       62                       Nicaragua  NIC 2003    0
10099       63                          Panama  PAN 2003    0
10100       64             Trinidad and Tobago  TTO 2003    0
10101       66                       Argentina  ARG 2003    0
10102       67                         Bolivia  BOL 2003    0
10103       68                          Brazil  BRA 2003    0
10104       69                           Chile  CHL 2003    1
10105       70                        Colombia  COL 2003    0
10106       71                         Ecuador  ECU 2003    0
10107       72                          Guyana  GUY 2003    0
10108       73                        Paraguay  PRY 2003    0
10109       74                            Peru  PER 2003    0
10110       75                        Suriname  SUR 2003    0
10111       76                         Uruguay  URY 2003    0
10112       77                       Venezuela  VEN 2003    0
10113       78                      Bangladesh  BGD 2003    0
10114       80                           India  IND 2003    0
10115       81                       Indonesia  IDN 2003    0
10116       82              Iran, Islamic Rep.  IRN 2003    0
10117       83                            Iraq  IRQ 2003    0
10118       84                          Israel  ISR 2003    0
10119       85                           Japan  JPN 2003    0
10120       86                          Jordan  JOR 2003    0
10121       87             Korea, South (Rep.)  KOR 2003    0
10122       88                        Laos PDR  LAO 2003    0
10123       89                        Malaysia  MYS 2003    0
10124       90                        Mongolia  MNG 2003    0
10125       91                         Myanmar  MMR 2003    0
10126       92                           Nepal  NPL 2003    0
10127       93                        Pakistan  PAK 2003    1
10128       94                     Philippines  PHL 2003    0
10129       95                       Singapore  SGP 2003    0
10130       96                       Sri Lanka  LKA 2003    0
10131       97            Syrian Arab Republic  SYR 2003    1
10132       98                          Taiwan    . 2003    0
10133       99                        Thailand  THA 2003    0
10134      100             Yemen Arab Republic    . 2003    .
10135      101                         Austria  AUT 2003    0
10136      102                         Belgium  BEL 2003    0
10137      103                        Bulgaria  BGR 2003    1
10138      104                  Czechoslovakia    . 2003    .
10139      105                         Denmark  DNK 2003    0
10140      106                         Finland  FIN 2003    0
10141      108                   Germany, West    . 2003    .
10142      109                   Germany, East    . 2003    .
10143      110                          Greece  GRC 2003    0
10144      111                         Hungary  HUN 2003    0
10145      112                         Iceland  ISL 2003    0
10146      113                         Ireland  IRL 2003    0
10147      114                           Italy  ITA 2003    0
10148      115                      Luxembourg  LUX 2003    0
10149      116                           Malta  MLT 2003    0
10150      117                     Netherlands  NLD 2003    0
10151      118                          Norway  NOR 2003    0
10152      119                          Poland  POL 2003    0
10153      120                        Portugal  PRT 2003    0
10154      121                         Romania  ROM 2003    0
10155      122                           Spain  ESP 2003    1
10156      123                          Sweden  SWE 2003    0
10157      124                     Switzerland  CHE 2003    0
10158      125                          Turkey  TUR 2003    0
10159      128                      Yugoslavia    . 2003    .
10160      129                       Australia  AUS 2003    0
10161      130                            Fiji  FJI 2003    0
10162      131                     New Zealand  NZL 2003    0
10163      132                Papua New Guinea  PNG 2003    0
10164      133                 Solomon Islands  SLB 2003    0
10165      134                         Vanuatu  VUT 2003    0
10166      135                   Western Samoa  WSM 2003    0
10167      136                         Bahrain  BHR 2003    0
10168      137                          Kuwait  KWT 2003    0
10169      138                            Oman  OMN 2003    0
10170      139                           Qatar  QAT 2003    0
10171      140                    Saudi Arabia  SAU 2003    0
10172      141            United Arab Emirates  ARE 2003    0
10173      142                     Afghanistan  AFG 2003    0
10174      143                         Albania  ALB 2003    0
10175      144                         Antigua  ATG 2003    0
10176      145                         Armenia  ARM 2003    0
10177      146                           Nauru    . 2003    0
10178      147                      Azerbaijan  AZE 2003    0
10179      148                          Bhutan  BTN 2003    0
10180      149                         Belarus  BLR 2003    0
10181      150              Bosnia-Herzegovina  BIH 2003    0
10182      151                          Brunei  BRN 2003    0
10183      152                        Cambodia  KHM 2003    0
10184      153                         Croatia  HRV 2003    0
10185      154                            Cuba  CUB 2003    0
10186      155                  Czech Republic  CZE 2003    0
10187      156                 Slovak Republic  SVK 2003    0
10188      157                        Dominica  DMA 2003    0
10189      158               Equatorial Guinea  GNQ 2003    0
10190      159                         Estonia  EST 2003    0
10191      160                         Eritrea  ERI 2003    0
10192      161                         Georgia  GEO 2003    0
10193      162                      Kazakhstan  KAZ 2003    0
10194      163                        Kiribati  KIR 2003    0
10195      164        Korea, North (Dem. Rep.)  PRK 2003    0
10196      165                      Kyrgyzstan  KGZ 2003    0
10197      166                          Latvia  LVA 2003    0
10198      167                         Lebanon  LBN 2003    0
10199      168                       Lithuania  LTU 2003    0
10200      169                       Macedonia  MKD 2003    0
10201      170                 Maldive Islands  MDV 2003    0
10202      171                         Moldova  MDA 2003    0
10203      172                         Namibia  NAM 2003    0
10204      174                       St. Lucia  LCA 2003    0
10205      175           Sao Tome and Principe  STP 2003    0
10206      176                        Slovenia  SVN 2003    0
10207      177                      Somaliland    . 2003    0
10208      178               Yemen PDR (South)    . 2003    .
10209      179             St. Kitts and Nevis  KNA 2003    0
10210      180                     St. Vincent  VCT 2003    0
10211      181                      Tajikistan  TJK 2003    0
10212      182                    Turkmenistan  TKM 2003    0
10213      183                         Ukraine  UKR 2003    0
10214      184                           Tonga  TON 2003    0
10215      185                      Uzbekistan  UZB 2003    0
10216      186                         Vietnam  VNM 2003    0
10217      187                          Cyprus  CYP 2003    .
10218      188                    Greek Cyprus    . 2003    0
10219      189 Micronesia, Federated States of  FSM 2003    0
10220      190               Republic of Yemen  YEM 2003    0
10221      191                         Germany  DEU 2003    1
10222      192                     Yugoslavia2  YUG 2003    0
10223      193                           Libya  LBY 2003    0
10224      194                       Ethiopia2  ETH 2003    0
10225      195                         Andorra  ADO 2003    0
10226      196                   Liechtenstein  LIE 2003    0
10227      197                Marshall Islands  MHL 2003    0
10228      198                           Palau  PLW 2003    0
10229      199                      San Marino  SMR 2003    0
10230        1                         Algeria  DZA 2004    1
10231        2                          Angola  AGO 2004    1
10232        3                           Benin  BEN 2004    1
10233        4                        Botswana  BWA 2004    0
10234        5                    Burkina Faso  BFA 2004    0
10235        6                         Burundi  BDI 2004    0
10236        7                        Cameroon  CMR 2004    0
10237        8                      Cape Verde  CPV 2004    0
10238        9        Central African Republic  CAF 2004    0
10239       10                            Chad  TCD 2004    0
10240       11                         Comoros  COM 2004    0
10241       12                           Congo  COG 2004    0
10242       13                        Djibouti  DJI 2004    0
10243       14                Egypt, Arab Rep.  EGY 2004    0
10244       15                        Ethiopia    . 2004    .
10245       16                           Gabon  GAB 2004    0
10246       17                     Gambia, The  GMB 2004    0
10247       18                           Ghana  GHA 2004    0
10248       19                          Guinea  GIN 2004    0
10249       20                   Guinea-Bissau  GNB 2004    0
10250       21                   Cote d'Ivoire  CIV 2004    0
10251       22                           Kenya  KEN 2004    0
10252       23                         Lesotho  LSO 2004    0
10253       24                         Liberia  LBR 2004    0
10254       25                      Madagascar  MDG 2004    0
10255       26                          Malawi  MWI 2004    0
10256       27                            Mali  MLI 2004    0
10257       28                      Mauritania  MRT 2004    0
10258       29                       Mauritius  MUS 2004    0
10259       30                         Morocco  MAR 2004    0
10260       31                      Mozambique  MOZ 2004    0
10261       32                           Niger  NER 2004    0
10262       33                         Nigeria  NGA 2004    0
10263       34                          Rwanda  RWA 2004    0
10264       35                         Senegal  SEN 2004    0
10265       36                      Seychelles  SYC 2004    0
10266       37                    Sierra Leone  SLE 2004    0
10267       38                         Somalia  SOM 2004    0
10268       39                    South Africa  ZAF 2004    0
10269       40                           Sudan  SDN 2004    0
10270       41                       Swaziland  SWZ 2004    0
10271       42                        Tanzania  TZA 2004    0
10272       43                            Togo  TGO 2004    0
10273       44                         Tunisia  TUN 2004    0
10274       45                          Uganda  UGA 2004    0
10275       46                           Zaire  ZAR 2004    0
10276       47                          Zambia  ZMB 2004    0
10277       48                        Zimbabwe  ZWE 2004    0
10278       49                    Bahamas, The  BHS 2004    0
10279       50                        Barbados  BRB 2004    0
10280       51                          Belize  BLZ 2004    0
10281       52                          Canada  CAN 2004    0
10282       53                      Costa Rica  CRI 2004    0
10283       54              Dominican Republic  DOM 2004    0
10284       55                     El Salvador  SLV 2004    0
10285       56                         Grenada  GRD 2004    0
10286       57                       Guatemala  GTM 2004    0
10287       58                           Haiti  HTI 2004    0
10288       59                        Honduras  HND 2004    0
10289       60                         Jamaica  JAM 2004    0
10290       61                          Mexico  MEX 2004    0
10291       62                       Nicaragua  NIC 2004    0
10292       63                          Panama  PAN 2004    0
10293       64             Trinidad and Tobago  TTO 2004    0
10294       66                       Argentina  ARG 2004    0
10295       67                         Bolivia  BOL 2004    0
10296       68                          Brazil  BRA 2004    1
10297       69                           Chile  CHL 2004    1
10298       70                        Colombia  COL 2004    0
10299       71                         Ecuador  ECU 2004    0
10300       72                          Guyana  GUY 2004    0
10301       73                        Paraguay  PRY 2004    0
10302       74                            Peru  PER 2004    0
10303       75                        Suriname  SUR 2004    0
10304       76                         Uruguay  URY 2004    0
10305       77                       Venezuela  VEN 2004    0
10306       78                      Bangladesh  BGD 2004    0
10307       80                           India  IND 2004    0
10308       81                       Indonesia  IDN 2004    0
10309       82              Iran, Islamic Rep.  IRN 2004    0
10310       83                            Iraq  IRQ 2004    0
10311       84                          Israel  ISR 2004    0
10312       85                           Japan  JPN 2004    0
10313       86                          Jordan  JOR 2004    0
10314       87             Korea, South (Rep.)  KOR 2004    0
10315       88                        Laos PDR  LAO 2004    0
10316       89                        Malaysia  MYS 2004    0
10317       90                        Mongolia  MNG 2004    0
10318       91                         Myanmar  MMR 2004    0
10319       92                           Nepal  NPL 2004    0
10320       93                        Pakistan  PAK 2004    1
10321       94                     Philippines  PHL 2004    1
10322       95                       Singapore  SGP 2004    0
10323       96                       Sri Lanka  LKA 2004    0
10324       97            Syrian Arab Republic  SYR 2004    0
10325       98                          Taiwan    . 2004    0
10326       99                        Thailand  THA 2004    0
10327      100             Yemen Arab Republic    . 2004    .
10328      101                         Austria  AUT 2004    0
10329      102                         Belgium  BEL 2004    0
10330      103                        Bulgaria  BGR 2004    0
10331      104                  Czechoslovakia    . 2004    .
10332      105                         Denmark  DNK 2004    0
10333      106                         Finland  FIN 2004    0
10334      108                   Germany, West    . 2004    .
10335      109                   Germany, East    . 2004    .
10336      110                          Greece  GRC 2004    0
10337      111                         Hungary  HUN 2004    0
10338      112                         Iceland  ISL 2004    0
10339      113                         Ireland  IRL 2004    0
10340      114                           Italy  ITA 2004    0
10341      115                      Luxembourg  LUX 2004    0
10342      116                           Malta  MLT 2004    0
10343      117                     Netherlands  NLD 2004    0
10344      118                          Norway  NOR 2004    0
10345      119                          Poland  POL 2004    0
10346      120                        Portugal  PRT 2004    0
10347      121                         Romania  ROM 2004    1
10348      122                           Spain  ESP 2004    1
10349      123                          Sweden  SWE 2004    0
10350      124                     Switzerland  CHE 2004    0
10351      125                          Turkey  TUR 2004    0
10352      128                      Yugoslavia    . 2004    .
10353      129                       Australia  AUS 2004    0
10354      130                            Fiji  FJI 2004    0
10355      131                     New Zealand  NZL 2004    0
10356      132                Papua New Guinea  PNG 2004    0
10357      133                 Solomon Islands  SLB 2004    0
10358      134                         Vanuatu  VUT 2004    0
10359      135                   Western Samoa  WSM 2004    0
10360      136                         Bahrain  BHR 2004    0
10361      137                          Kuwait  KWT 2004    0
10362      138                            Oman  OMN 2004    0
10363      139                           Qatar  QAT 2004    0
10364      140                    Saudi Arabia  SAU 2004    0
10365      141            United Arab Emirates  ARE 2004    0
10366      142                     Afghanistan  AFG 2004    0
10367      143                         Albania  ALB 2004    0
10368      144                         Antigua  ATG 2004    0
10369      145                         Armenia  ARM 2004    0
10370      146                           Nauru    . 2004    0
10371      147                      Azerbaijan  AZE 2004    0
10372      148                          Bhutan  BTN 2004    0
10373      149                         Belarus  BLR 2004    0
10374      150              Bosnia-Herzegovina  BIH 2004    0
10375      151                          Brunei  BRN 2004    0
10376      152                        Cambodia  KHM 2004    0
10377      153                         Croatia  HRV 2004    0
10378      154                            Cuba  CUB 2004    0
10379      155                  Czech Republic  CZE 2004    0
10380      156                 Slovak Republic  SVK 2004    0
10381      157                        Dominica  DMA 2004    0
10382      158               Equatorial Guinea  GNQ 2004    0
10383      159                         Estonia  EST 2004    0
10384      160                         Eritrea  ERI 2004    0
10385      161                         Georgia  GEO 2004    0
10386      162                      Kazakhstan  KAZ 2004    0
10387      163                        Kiribati  KIR 2004    0
10388      164        Korea, North (Dem. Rep.)  PRK 2004    0
10389      165                      Kyrgyzstan  KGZ 2004    0
10390      166                          Latvia  LVA 2004    0
10391      167                         Lebanon  LBN 2004    0
10392      168                       Lithuania  LTU 2004    0
10393      169                       Macedonia  MKD 2004    0
10394      170                 Maldive Islands  MDV 2004    0
10395      171                         Moldova  MDA 2004    0
10396      172                         Namibia  NAM 2004    0
10397      174                       St. Lucia  LCA 2004    0
10398      175           Sao Tome and Principe  STP 2004    0
10399      176                        Slovenia  SVN 2004    0
10400      177                      Somaliland    . 2004    0
10401      178               Yemen PDR (South)    . 2004    .
10402      179             St. Kitts and Nevis  KNA 2004    0
10403      180                     St. Vincent  VCT 2004    0
10404      181                      Tajikistan  TJK 2004    0
10405      182                    Turkmenistan  TKM 2004    0
10406      183                         Ukraine  UKR 2004    0
10407      184                           Tonga  TON 2004    0
10408      185                      Uzbekistan  UZB 2004    0
10409      186                         Vietnam  VNM 2004    0
10410      187                          Cyprus  CYP 2004    .
10411      188                    Greek Cyprus    . 2004    0
10412      189 Micronesia, Federated States of  FSM 2004    0
10413      190               Republic of Yemen  YEM 2004    0
10414      191                         Germany  DEU 2004    1
10415      192                     Yugoslavia2  YUG 2004    0
10416      193                           Libya  LBY 2004    0
10417      194                       Ethiopia2  ETH 2004    0
10418      195                         Andorra  ADO 2004    0
10419      196                   Liechtenstein  LIE 2004    0
10420      197                Marshall Islands  MHL 2004    0
10421      198                           Palau  PLW 2004    0
10422      199                      San Marino  SMR 2004    0
10423        1                         Algeria  DZA 2005    1
10424        2                          Angola  AGO 2005    0
10425        3                           Benin  BEN 2005    1
10426        4                        Botswana  BWA 2005    0
10427        5                    Burkina Faso  BFA 2005    0
10428        6                         Burundi  BDI 2005    0
10429        7                        Cameroon  CMR 2005    0
10430        8                      Cape Verde  CPV 2005    0
10431        9        Central African Republic  CAF 2005    0
10432       10                            Chad  TCD 2005    0
10433       11                         Comoros  COM 2005    0
10434       12                           Congo  COG 2005    0
10435       13                        Djibouti  DJI 2005    0
10436       14                Egypt, Arab Rep.  EGY 2005    0
10437       15                        Ethiopia    . 2005    .
10438       16                           Gabon  GAB 2005    0
10439       17                     Gambia, The  GMB 2005    0
10440       18                           Ghana  GHA 2005    0
10441       19                          Guinea  GIN 2005    0
10442       20                   Guinea-Bissau  GNB 2005    0
10443       21                   Cote d'Ivoire  CIV 2005    0
10444       22                           Kenya  KEN 2005    0
10445       23                         Lesotho  LSO 2005    0
10446       24                         Liberia  LBR 2005    0
10447       25                      Madagascar  MDG 2005    0
10448       26                          Malawi  MWI 2005    0
10449       27                            Mali  MLI 2005    0
10450       28                      Mauritania  MRT 2005    0
10451       29                       Mauritius  MUS 2005    0
10452       30                         Morocco  MAR 2005    0
10453       31                      Mozambique  MOZ 2005    0
10454       32                           Niger  NER 2005    0
10455       33                         Nigeria  NGA 2005    0
10456       34                          Rwanda  RWA 2005    0
10457       35                         Senegal  SEN 2005    0
10458       36                      Seychelles  SYC 2005    0
10459       37                    Sierra Leone  SLE 2005    0
10460       38                         Somalia  SOM 2005    0
10461       39                    South Africa  ZAF 2005    0
10462       40                           Sudan  SDN 2005    0
10463       41                       Swaziland  SWZ 2005    0
10464       42                        Tanzania  TZA 2005    1
10465       43                            Togo  TGO 2005    0
10466       44                         Tunisia  TUN 2005    0
10467       45                          Uganda  UGA 2005    0
10468       46                           Zaire  ZAR 2005    0
10469       47                          Zambia  ZMB 2005    0
10470       48                        Zimbabwe  ZWE 2005    0
10471       49                    Bahamas, The  BHS 2005    0
10472       50                        Barbados  BRB 2005    0
10473       51                          Belize  BLZ 2005    0
10474       52                          Canada  CAN 2005    0
10475       53                      Costa Rica  CRI 2005    0
10476       54              Dominican Republic  DOM 2005    0
10477       55                     El Salvador  SLV 2005    0
10478       56                         Grenada  GRD 2005    0
10479       57                       Guatemala  GTM 2005    0
10480       58                           Haiti  HTI 2005    0
10481       59                        Honduras  HND 2005    0
10482       60                         Jamaica  JAM 2005    0
10483       61                          Mexico  MEX 2005    0
10484       62                       Nicaragua  NIC 2005    0
10485       63                          Panama  PAN 2005    0
10486       64             Trinidad and Tobago  TTO 2005    0
10487       66                       Argentina  ARG 2005    1
10488       67                         Bolivia  BOL 2005    0
10489       68                          Brazil  BRA 2005    1
10490       69                           Chile  CHL 2005    0
10491       70                        Colombia  COL 2005    0
10492       71                         Ecuador  ECU 2005    0
10493       72                          Guyana  GUY 2005    0
10494       73                        Paraguay  PRY 2005    0
10495       74                            Peru  PER 2005    0
10496       75                        Suriname  SUR 2005    0
10497       76                         Uruguay  URY 2005    0
10498       77                       Venezuela  VEN 2005    0
10499       78                      Bangladesh  BGD 2005    0
10500       80                           India  IND 2005    0
10501       81                       Indonesia  IDN 2005    0
10502       82              Iran, Islamic Rep.  IRN 2005    0
10503       83                            Iraq  IRQ 2005    0
10504       84                          Israel  ISR 2005    0
10505       85                           Japan  JPN 2005    1
10506       86                          Jordan  JOR 2005    0
10507       87             Korea, South (Rep.)  KOR 2005    0
10508       88                        Laos PDR  LAO 2005    0
10509       89                        Malaysia  MYS 2005    0
10510       90                        Mongolia  MNG 2005    0
10511       91                         Myanmar  MMR 2005    0
10512       92                           Nepal  NPL 2005    0
10513       93                        Pakistan  PAK 2005    0
10514       94                     Philippines  PHL 2005    1
10515       95                       Singapore  SGP 2005    0
10516       96                       Sri Lanka  LKA 2005    0
10517       97            Syrian Arab Republic  SYR 2005    0
10518       98                          Taiwan    . 2005    0
10519       99                        Thailand  THA 2005    0
10520      100             Yemen Arab Republic    . 2005    .
10521      101                         Austria  AUT 2005    0
10522      102                         Belgium  BEL 2005    0
10523      103                        Bulgaria  BGR 2005    0
10524      104                  Czechoslovakia    . 2005    .
10525      105                         Denmark  DNK 2005    1
10526      106                         Finland  FIN 2005    0
10527      108                   Germany, West    . 2005    .
10528      109                   Germany, East    . 2005    .
10529      110                          Greece  GRC 2005    1
10530      111                         Hungary  HUN 2005    0
10531      112                         Iceland  ISL 2005    0
10532      113                         Ireland  IRL 2005    0
10533      114                           Italy  ITA 2005    0
10534      115                      Luxembourg  LUX 2005    0
10535      116                           Malta  MLT 2005    0
10536      117                     Netherlands  NLD 2005    0
10537      118                          Norway  NOR 2005    0
10538      119                          Poland  POL 2005    0
10539      120                        Portugal  PRT 2005    0
10540      121                         Romania  ROM 2005    1
10541      122                           Spain  ESP 2005    0
10542      123                          Sweden  SWE 2005    0
10543      124                     Switzerland  CHE 2005    0
10544      125                          Turkey  TUR 2005    0
10545      128                      Yugoslavia    . 2005    .
10546      129                       Australia  AUS 2005    0
10547      130                            Fiji  FJI 2005    0
10548      131                     New Zealand  NZL 2005    0
10549      132                Papua New Guinea  PNG 2005    0
10550      133                 Solomon Islands  SLB 2005    0
10551      134                         Vanuatu  VUT 2005    0
10552      135                   Western Samoa  WSM 2005    0
10553      136                         Bahrain  BHR 2005    0
10554      137                          Kuwait  KWT 2005    0
10555      138                            Oman  OMN 2005    0
10556      139                           Qatar  QAT 2005    0
10557      140                    Saudi Arabia  SAU 2005    0
10558      141            United Arab Emirates  ARE 2005    0
10559      142                     Afghanistan  AFG 2005    0
10560      143                         Albania  ALB 2005    0
10561      144                         Antigua  ATG 2005    0
10562      145                         Armenia  ARM 2005    0
10563      146                           Nauru    . 2005    0
10564      147                      Azerbaijan  AZE 2005    0
10565      148                          Bhutan  BTN 2005    0
10566      149                         Belarus  BLR 2005    0
10567      150              Bosnia-Herzegovina  BIH 2005    0
10568      151                          Brunei  BRN 2005    0
10569      152                        Cambodia  KHM 2005    0
10570      153                         Croatia  HRV 2005    0
10571      154                            Cuba  CUB 2005    0
10572      155                  Czech Republic  CZE 2005    0
10573      156                 Slovak Republic  SVK 2005    0
10574      157                        Dominica  DMA 2005    0
10575      158               Equatorial Guinea  GNQ 2005    0
10576      159                         Estonia  EST 2005    0
10577      160                         Eritrea  ERI 2005    0
10578      161                         Georgia  GEO 2005    0
10579      162                      Kazakhstan  KAZ 2005    0
10580      163                        Kiribati  KIR 2005    0
10581      164        Korea, North (Dem. Rep.)  PRK 2005    0
10582      165                      Kyrgyzstan  KGZ 2005    0
10583      166                          Latvia  LVA 2005    0
10584      167                         Lebanon  LBN 2005    0
10585      168                       Lithuania  LTU 2005    0
10586      169                       Macedonia  MKD 2005    0
10587      170                 Maldive Islands  MDV 2005    0
10588      171                         Moldova  MDA 2005    0
10589      172                         Namibia  NAM 2005    0
10590      174                       St. Lucia  LCA 2005    0
10591      175           Sao Tome and Principe  STP 2005    0
10592      176                        Slovenia  SVN 2005    0
10593      177                      Somaliland    . 2005    0
10594      178               Yemen PDR (South)    . 2005    .
10595      179             St. Kitts and Nevis  KNA 2005    0
10596      180                     St. Vincent  VCT 2005    0
10597      181                      Tajikistan  TJK 2005    0
10598      182                    Turkmenistan  TKM 2005    0
10599      183                         Ukraine  UKR 2005    0
10600      184                           Tonga  TON 2005    0
10601      185                      Uzbekistan  UZB 2005    0
10602      186                         Vietnam  VNM 2005    0
10603      187                          Cyprus  CYP 2005    .
10604      188                    Greek Cyprus    . 2005    0
10605      189 Micronesia, Federated States of  FSM 2005    0
10606      190               Republic of Yemen  YEM 2005    0
10607      191                         Germany  DEU 2005    0
10608      192                     Yugoslavia2  YUG 2005    0
10609      193                           Libya  LBY 2005    0
10610      194                       Ethiopia2  ETH 2005    0
10611      195                         Andorra  ADO 2005    0
10612      196                   Liechtenstein  LIE 2005    0
10613      197                Marshall Islands  MHL 2005    0
10614      198                           Palau  PLW 2005    0
10615      199                      San Marino  SMR 2005    0
10616        1                         Algeria  DZA 2006    0
10617        2                          Angola  AGO 2006    0
10618        3                           Benin  BEN 2006    0
10619        4                        Botswana  BWA 2006    0
10620        5                    Burkina Faso  BFA 2006    0
10621        6                         Burundi  BDI 2006    0
10622        7                        Cameroon  CMR 2006    0
10623        8                      Cape Verde  CPV 2006    0
10624        9        Central African Republic  CAF 2006    0
10625       10                            Chad  TCD 2006    0
10626       11                         Comoros  COM 2006    0
10627       12                           Congo  COG 2006    1
10628       13                        Djibouti  DJI 2006    0
10629       14                Egypt, Arab Rep.  EGY 2006    0
10630       15                        Ethiopia    . 2006    .
10631       16                           Gabon  GAB 2006    0
10632       17                     Gambia, The  GMB 2006    0
10633       18                           Ghana  GHA 2006    1
10634       19                          Guinea  GIN 2006    0
10635       20                   Guinea-Bissau  GNB 2006    0
10636       21                   Cote d'Ivoire  CIV 2006    0
10637       22                           Kenya  KEN 2006    0
10638       23                         Lesotho  LSO 2006    0
10639       24                         Liberia  LBR 2006    0
10640       25                      Madagascar  MDG 2006    0
10641       26                          Malawi  MWI 2006    0
10642       27                            Mali  MLI 2006    0
10643       28                      Mauritania  MRT 2006    0
10644       29                       Mauritius  MUS 2006    0
10645       30                         Morocco  MAR 2006    0
10646       31                      Mozambique  MOZ 2006    0
10647       32                           Niger  NER 2006    0
10648       33                         Nigeria  NGA 2006    0
10649       34                          Rwanda  RWA 2006    0
10650       35                         Senegal  SEN 2006    0
10651       36                      Seychelles  SYC 2006    0
10652       37                    Sierra Leone  SLE 2006    0
10653       38                         Somalia  SOM 2006    0
10654       39                    South Africa  ZAF 2006    0
10655       40                           Sudan  SDN 2006    0
10656       41                       Swaziland  SWZ 2006    0
10657       42                        Tanzania  TZA 2006    1
10658       43                            Togo  TGO 2006    0
10659       44                         Tunisia  TUN 2006    0
10660       45                          Uganda  UGA 2006    0
10661       46                           Zaire  ZAR 2006    0
10662       47                          Zambia  ZMB 2006    0
10663       48                        Zimbabwe  ZWE 2006    0
10664       49                    Bahamas, The  BHS 2006    0
10665       50                        Barbados  BRB 2006    0
10666       51                          Belize  BLZ 2006    0
10667       52                          Canada  CAN 2006    0
10668       53                      Costa Rica  CRI 2006    0
10669       54              Dominican Republic  DOM 2006    0
10670       55                     El Salvador  SLV 2006    0
10671       56                         Grenada  GRD 2006    0
10672       57                       Guatemala  GTM 2006    0
10673       58                           Haiti  HTI 2006    0
10674       59                        Honduras  HND 2006    0
10675       60                         Jamaica  JAM 2006    0
10676       61                          Mexico  MEX 2006    0
10677       62                       Nicaragua  NIC 2006    0
10678       63                          Panama  PAN 2006    0
10679       64             Trinidad and Tobago  TTO 2006    0
10680       66                       Argentina  ARG 2006    1
10681       67                         Bolivia  BOL 2006    0
10682       68                          Brazil  BRA 2006    0
10683       69                           Chile  CHL 2006    0
10684       70                        Colombia  COL 2006    0
10685       71                         Ecuador  ECU 2006    0
10686       72                          Guyana  GUY 2006    0
10687       73                        Paraguay  PRY 2006    0
10688       74                            Peru  PER 2006    1
10689       75                        Suriname  SUR 2006    0
10690       76                         Uruguay  URY 2006    0
10691       77                       Venezuela  VEN 2006    0
10692       78                      Bangladesh  BGD 2006    0
10693       80                           India  IND 2006    0
10694       81                       Indonesia  IDN 2006    0
10695       82              Iran, Islamic Rep.  IRN 2006    0
10696       83                            Iraq  IRQ 2006    0
10697       84                          Israel  ISR 2006    0
10698       85                           Japan  JPN 2006    1
10699       86                          Jordan  JOR 2006    0
10700       87             Korea, South (Rep.)  KOR 2006    0
10701       88                        Laos PDR  LAO 2006    0
10702       89                        Malaysia  MYS 2006    0
10703       90                        Mongolia  MNG 2006    0
10704       91                         Myanmar  MMR 2006    0
10705       92                           Nepal  NPL 2006    0
10706       93                        Pakistan  PAK 2006    0
10707       94                     Philippines  PHL 2006    0
10708       95                       Singapore  SGP 2006    0
10709       96                       Sri Lanka  LKA 2006    0
10710       97            Syrian Arab Republic  SYR 2006    0
10711       98                          Taiwan    . 2006    0
10712       99                        Thailand  THA 2006    0
10713      100             Yemen Arab Republic    . 2006    .
10714      101                         Austria  AUT 2006    0
10715      102                         Belgium  BEL 2006    0
10716      103                        Bulgaria  BGR 2006    0
10717      104                  Czechoslovakia    . 2006    .
10718      105                         Denmark  DNK 2006    1
10719      106                         Finland  FIN 2006    0
10720      108                   Germany, West    . 2006    .
10721      109                   Germany, East    . 2006    .
10722      110                          Greece  GRC 2006    1
10723      111                         Hungary  HUN 2006    0
10724      112                         Iceland  ISL 2006    0
10725      113                         Ireland  IRL 2006    0
10726      114                           Italy  ITA 2006    0
10727      115                      Luxembourg  LUX 2006    0
10728      116                           Malta  MLT 2006    0
10729      117                     Netherlands  NLD 2006    0
10730      118                          Norway  NOR 2006    0
10731      119                          Poland  POL 2006    0
10732      120                        Portugal  PRT 2006    0
10733      121                         Romania  ROM 2006    0
10734      122                           Spain  ESP 2006    0
10735      123                          Sweden  SWE 2006    0
10736      124                     Switzerland  CHE 2006    0
10737      125                          Turkey  TUR 2006    0
10738      128                      Yugoslavia    . 2006    .
10739      129                       Australia  AUS 2006    0
10740      130                            Fiji  FJI 2006    0
10741      131                     New Zealand  NZL 2006    0
10742      132                Papua New Guinea  PNG 2006    0
10743      133                 Solomon Islands  SLB 2006    0
10744      134                         Vanuatu  VUT 2006    0
10745      135                   Western Samoa  WSM 2006    0
10746      136                         Bahrain  BHR 2006    0
10747      137                          Kuwait  KWT 2006    0
10748      138                            Oman  OMN 2006    0
10749      139                           Qatar  QAT 2006    1
10750      140                    Saudi Arabia  SAU 2006    0
10751      141            United Arab Emirates  ARE 2006    0
10752      142                     Afghanistan  AFG 2006    0
10753      143                         Albania  ALB 2006    0
10754      144                         Antigua  ATG 2006    0
10755      145                         Armenia  ARM 2006    0
10756      146                           Nauru    . 2006    0
10757      147                      Azerbaijan  AZE 2006    0
10758      148                          Bhutan  BTN 2006    0
10759      149                         Belarus  BLR 2006    0
10760      150              Bosnia-Herzegovina  BIH 2006    0
10761      151                          Brunei  BRN 2006    0
10762      152                        Cambodia  KHM 2006    0
10763      153                         Croatia  HRV 2006    0
10764      154                            Cuba  CUB 2006    0
10765      155                  Czech Republic  CZE 2006    0
10766      156                 Slovak Republic  SVK 2006    1
10767      157                        Dominica  DMA 2006    0
10768      158               Equatorial Guinea  GNQ 2006    0
10769      159                         Estonia  EST 2006    0
10770      160                         Eritrea  ERI 2006    0
10771      161                         Georgia  GEO 2006    0
10772      162                      Kazakhstan  KAZ 2006    0
10773      163                        Kiribati  KIR 2006    0
10774      164        Korea, North (Dem. Rep.)  PRK 2006    0
10775      165                      Kyrgyzstan  KGZ 2006    0
10776      166                          Latvia  LVA 2006    0
10777      167                         Lebanon  LBN 2006    0
10778      168                       Lithuania  LTU 2006    0
10779      169                       Macedonia  MKD 2006    0
10780      170                 Maldive Islands  MDV 2006    0
10781      171                         Moldova  MDA 2006    0
10782      172                         Namibia  NAM 2006    0
10783      174                       St. Lucia  LCA 2006    0
10784      175           Sao Tome and Principe  STP 2006    0
10785      176                        Slovenia  SVN 2006    0
10786      177                      Somaliland    . 2006    0
10787      178               Yemen PDR (South)    . 2006    .
10788      179             St. Kitts and Nevis  KNA 2006    0
10789      180                     St. Vincent  VCT 2006    0
10790      181                      Tajikistan  TJK 2006    0
10791      182                    Turkmenistan  TKM 2006    0
10792      183                         Ukraine  UKR 2006    0
10793      184                           Tonga  TON 2006    0
10794      185                      Uzbekistan  UZB 2006    0
10795      186                         Vietnam  VNM 2006    0
10796      187                          Cyprus  CYP 2006    .
10797      188                    Greek Cyprus    . 2006    0
10798      189 Micronesia, Federated States of  FSM 2006    0
10799      190               Republic of Yemen  YEM 2006    0
10800      191                         Germany  DEU 2006    0
10801      192                     Yugoslavia2  YUG 2006    0
10802      193                           Libya  LBY 2006    0
10803      194                       Ethiopia2  ETH 2006    0
10804      195                         Andorra  ADO 2006    0
10805      196                   Liechtenstein  LIE 2006    0
10806      197                Marshall Islands  MHL 2006    0
10807      198                           Palau  PLW 2006    0
10808      199                      San Marino  SMR 2006    0
10809        1                         Algeria  DZA 2007    0
10810        2                          Angola  AGO 2007    0
10811        3                           Benin  BEN 2007    0
10812        4                        Botswana  BWA 2007    0
10813        5                    Burkina Faso  BFA 2007    0
10814        6                         Burundi  BDI 2007    0
10815        7                        Cameroon  CMR 2007    0
10816        8                      Cape Verde  CPV 2007    0
10817        9        Central African Republic  CAF 2007    0
10818       10                            Chad  TCD 2007    0
10819       11                         Comoros  COM 2007    0
10820       12                           Congo  COG 2007    1
10821       13                        Djibouti  DJI 2007    0
10822       14                Egypt, Arab Rep.  EGY 2007    0
10823       15                        Ethiopia    . 2007    .
10824       16                           Gabon  GAB 2007    0
10825       17                     Gambia, The  GMB 2007    0
10826       18                           Ghana  GHA 2007    1
10827       19                          Guinea  GIN 2007    0
10828       20                   Guinea-Bissau  GNB 2007    0
10829       21                   Cote d'Ivoire  CIV 2007    0
10830       22                           Kenya  KEN 2007    0
10831       23                         Lesotho  LSO 2007    0
10832       24                         Liberia  LBR 2007    0
10833       25                      Madagascar  MDG 2007    0
10834       26                          Malawi  MWI 2007    0
10835       27                            Mali  MLI 2007    0
10836       28                      Mauritania  MRT 2007    0
10837       29                       Mauritius  MUS 2007    0
10838       30                         Morocco  MAR 2007    0
10839       31                      Mozambique  MOZ 2007    0
10840       32                           Niger  NER 2007    0
10841       33                         Nigeria  NGA 2007    0
10842       34                          Rwanda  RWA 2007    0
10843       35                         Senegal  SEN 2007    0
10844       36                      Seychelles  SYC 2007    0
10845       37                    Sierra Leone  SLE 2007    0
10846       38                         Somalia  SOM 2007    0
10847       39                    South Africa  ZAF 2007    1
10848       40                           Sudan  SDN 2007    0
10849       41                       Swaziland  SWZ 2007    0
10850       42                        Tanzania  TZA 2007    0
10851       43                            Togo  TGO 2007    0
10852       44                         Tunisia  TUN 2007    0
10853       45                          Uganda  UGA 2007    0
10854       46                           Zaire  ZAR 2007    0
10855       47                          Zambia  ZMB 2007    0
10856       48                        Zimbabwe  ZWE 2007    0
10857       49                    Bahamas, The  BHS 2007    0
10858       50                        Barbados  BRB 2007    0
10859       51                          Belize  BLZ 2007    0
10860       52                          Canada  CAN 2007    0
10861       53                      Costa Rica  CRI 2007    0
10862       54              Dominican Republic  DOM 2007    0
10863       55                     El Salvador  SLV 2007    0
10864       56                         Grenada  GRD 2007    0
10865       57                       Guatemala  GTM 2007    0
10866       58                           Haiti  HTI 2007    0
10867       59                        Honduras  HND 2007    0
10868       60                         Jamaica  JAM 2007    0
10869       61                          Mexico  MEX 2007    0
10870       62                       Nicaragua  NIC 2007    0
10871       63                          Panama  PAN 2007    1
10872       64             Trinidad and Tobago  TTO 2007    0
10873       66                       Argentina  ARG 2007    0
10874       67                         Bolivia  BOL 2007    0
10875       68                          Brazil  BRA 2007    0
10876       69                           Chile  CHL 2007    0
10877       70                        Colombia  COL 2007    0
10878       71                         Ecuador  ECU 2007    0
10879       72                          Guyana  GUY 2007    0
10880       73                        Paraguay  PRY 2007    0
10881       74                            Peru  PER 2007    1
10882       75                        Suriname  SUR 2007    0
10883       76                         Uruguay  URY 2007    0
10884       77                       Venezuela  VEN 2007    0
10885       78                      Bangladesh  BGD 2007    0
10886       80                           India  IND 2007    0
10887       81                       Indonesia  IDN 2007    1
10888       82              Iran, Islamic Rep.  IRN 2007    0
10889       83                            Iraq  IRQ 2007    0
10890       84                          Israel  ISR 2007    0
10891       85                           Japan  JPN 2007    0
10892       86                          Jordan  JOR 2007    0
10893       87             Korea, South (Rep.)  KOR 2007    0
10894       88                        Laos PDR  LAO 2007    0
10895       89                        Malaysia  MYS 2007    0
10896       90                        Mongolia  MNG 2007    0
10897       91                         Myanmar  MMR 2007    0
10898       92                           Nepal  NPL 2007    0
10899       93                        Pakistan  PAK 2007    0
10900       94                     Philippines  PHL 2007    0
10901       95                       Singapore  SGP 2007    0
10902       96                       Sri Lanka  LKA 2007    0
10903       97            Syrian Arab Republic  SYR 2007    0
10904       98                          Taiwan    . 2007    0
10905       99                        Thailand  THA 2007    0
10906      100             Yemen Arab Republic    . 2007    .
10907      101                         Austria  AUT 2007    0
10908      102                         Belgium  BEL 2007    1
10909      103                        Bulgaria  BGR 2007    0
10910      104                  Czechoslovakia    . 2007    .
10911      105                         Denmark  DNK 2007    0
10912      106                         Finland  FIN 2007    0
10913      108                   Germany, West    . 2007    .
10914      109                   Germany, East    . 2007    .
10915      110                          Greece  GRC 2007    0
10916      111                         Hungary  HUN 2007    0
10917      112                         Iceland  ISL 2007    0
10918      113                         Ireland  IRL 2007    0
10919      114                           Italy  ITA 2007    1
10920      115                      Luxembourg  LUX 2007    0
10921      116                           Malta  MLT 2007    0
10922      117                     Netherlands  NLD 2007    0
10923      118                          Norway  NOR 2007    0
10924      119                          Poland  POL 2007    0
10925      120                        Portugal  PRT 2007    0
10926      121                         Romania  ROM 2007    0
10927      122                           Spain  ESP 2007    0
10928      123                          Sweden  SWE 2007    0
10929      124                     Switzerland  CHE 2007    0
10930      125                          Turkey  TUR 2007    0
10931      128                      Yugoslavia    . 2007    .
10932      129                       Australia  AUS 2007    0
10933      130                            Fiji  FJI 2007    0
10934      131                     New Zealand  NZL 2007    0
10935      132                Papua New Guinea  PNG 2007    0
10936      133                 Solomon Islands  SLB 2007    0
10937      134                         Vanuatu  VUT 2007    0
10938      135                   Western Samoa  WSM 2007    0
10939      136                         Bahrain  BHR 2007    0
10940      137                          Kuwait  KWT 2007    0
10941      138                            Oman  OMN 2007    0
10942      139                           Qatar  QAT 2007    1
10943      140                    Saudi Arabia  SAU 2007    0
10944      141            United Arab Emirates  ARE 2007    0
10945      142                     Afghanistan  AFG 2007    0
10946      143                         Albania  ALB 2007    0
10947      144                         Antigua  ATG 2007    0
10948      145                         Armenia  ARM 2007    0
10949      146                           Nauru    . 2007    0
10950      147                      Azerbaijan  AZE 2007    0
10951      148                          Bhutan  BTN 2007    0
10952      149                         Belarus  BLR 2007    0
10953      150              Bosnia-Herzegovina  BIH 2007    0
10954      151                          Brunei  BRN 2007    0
10955      152                        Cambodia  KHM 2007    0
10956      153                         Croatia  HRV 2007    0
10957      154                            Cuba  CUB 2007    0
10958      155                  Czech Republic  CZE 2007    0
10959      156                 Slovak Republic  SVK 2007    1
10960      157                        Dominica  DMA 2007    0
10961      158               Equatorial Guinea  GNQ 2007    0
10962      159                         Estonia  EST 2007    0
10963      160                         Eritrea  ERI 2007    0
10964      161                         Georgia  GEO 2007    0
10965      162                      Kazakhstan  KAZ 2007    0
10966      163                        Kiribati  KIR 2007    0
10967      164        Korea, North (Dem. Rep.)  PRK 2007    0
10968      165                      Kyrgyzstan  KGZ 2007    0
10969      166                          Latvia  LVA 2007    0
10970      167                         Lebanon  LBN 2007    0
10971      168                       Lithuania  LTU 2007    0
10972      169                       Macedonia  MKD 2007    0
10973      170                 Maldive Islands  MDV 2007    0
10974      171                         Moldova  MDA 2007    0
10975      172                         Namibia  NAM 2007    0
10976      174                       St. Lucia  LCA 2007    0
10977      175           Sao Tome and Principe  STP 2007    0
10978      176                        Slovenia  SVN 2007    0
10979      177                      Somaliland    . 2007    0
10980      178               Yemen PDR (South)    . 2007    .
10981      179             St. Kitts and Nevis  KNA 2007    0
10982      180                     St. Vincent  VCT 2007    0
10983      181                      Tajikistan  TJK 2007    0
10984      182                    Turkmenistan  TKM 2007    0
10985      183                         Ukraine  UKR 2007    0
10986      184                           Tonga  TON 2007    0
10987      185                      Uzbekistan  UZB 2007    0
10988      186                         Vietnam  VNM 2007    0
10989      187                          Cyprus  CYP 2007    .
10990      188                    Greek Cyprus    . 2007    0
10991      189 Micronesia, Federated States of  FSM 2007    0
10992      190               Republic of Yemen  YEM 2007    0
10993      191                         Germany  DEU 2007    0
10994      192                     Yugoslavia2  YUG 2007    0
10995      193                           Libya  LBY 2007    0
10996      194                       Ethiopia2  ETH 2007    0
10997      195                         Andorra  ADO 2007    0
10998      196                   Liechtenstein  LIE 2007    0
10999      197                Marshall Islands  MHL 2007    0
11000      198                           Palau  PLW 2007    0
11001      199                      San Marino  SMR 2007    0
11002        1                         Algeria  DZA 2008    0
11003        2                          Angola  AGO 2008    0
11004        3                           Benin  BEN 2008    0
11005        4                        Botswana  BWA 2008    0
11006        5                    Burkina Faso  BFA 2008    1
11007        6                         Burundi  BDI 2008    0
11008        7                        Cameroon  CMR 2008    0
11009        8                      Cape Verde  CPV 2008    0
11010        9        Central African Republic  CAF 2008    0
11011       10                            Chad  TCD 2008    0
11012       11                         Comoros  COM 2008    0
11013       12                           Congo  COG 2008    0
11014       13                        Djibouti  DJI 2008    0
11015       14                Egypt, Arab Rep.  EGY 2008    0
11016       15                        Ethiopia    . 2008    .
11017       16                           Gabon  GAB 2008    0
11018       17                     Gambia, The  GMB 2008    0
11019       18                           Ghana  GHA 2008    0
11020       19                          Guinea  GIN 2008    0
11021       20                   Guinea-Bissau  GNB 2008    0
11022       21                   Cote d'Ivoire  CIV 2008    0
11023       22                           Kenya  KEN 2008    0
11024       23                         Lesotho  LSO 2008    0
11025       24                         Liberia  LBR 2008    0
11026       25                      Madagascar  MDG 2008    0
11027       26                          Malawi  MWI 2008    0
11028       27                            Mali  MLI 2008    0
11029       28                      Mauritania  MRT 2008    0
11030       29                       Mauritius  MUS 2008    0
11031       30                         Morocco  MAR 2008    0
11032       31                      Mozambique  MOZ 2008    0
11033       32                           Niger  NER 2008    0
11034       33                         Nigeria  NGA 2008    0
11035       34                          Rwanda  RWA 2008    0
11036       35                         Senegal  SEN 2008    0
11037       36                      Seychelles  SYC 2008    0
11038       37                    Sierra Leone  SLE 2008    0
11039       38                         Somalia  SOM 2008    0
11040       39                    South Africa  ZAF 2008    1
11041       40                           Sudan  SDN 2008    0
11042       41                       Swaziland  SWZ 2008    0
11043       42                        Tanzania  TZA 2008    0
11044       43                            Togo  TGO 2008    0
11045       44                         Tunisia  TUN 2008    0
11046       45                          Uganda  UGA 2008    0
11047       46                           Zaire  ZAR 2008    0
11048       47                          Zambia  ZMB 2008    0
11049       48                        Zimbabwe  ZWE 2008    0
11050       49                    Bahamas, The  BHS 2008    0
11051       50                        Barbados  BRB 2008    0
11052       51                          Belize  BLZ 2008    0
11053       52                          Canada  CAN 2008    0
11054       53                      Costa Rica  CRI 2008    1
11055       54              Dominican Republic  DOM 2008    0
11056       55                     El Salvador  SLV 2008    0
11057       56                         Grenada  GRD 2008    0
11058       57                       Guatemala  GTM 2008    0
11059       58                           Haiti  HTI 2008    0
11060       59                        Honduras  HND 2008    0
11061       60                         Jamaica  JAM 2008    0
11062       61                          Mexico  MEX 2008    0
11063       62                       Nicaragua  NIC 2008    0
11064       63                          Panama  PAN 2008    1
11065       64             Trinidad and Tobago  TTO 2008    0
11066       66                       Argentina  ARG 2008    0
11067       67                         Bolivia  BOL 2008    0
11068       68                          Brazil  BRA 2008    0
11069       69                           Chile  CHL 2008    0
11070       70                        Colombia  COL 2008    0
11071       71                         Ecuador  ECU 2008    0
11072       72                          Guyana  GUY 2008    0
11073       73                        Paraguay  PRY 2008    0
11074       74                            Peru  PER 2008    0
11075       75                        Suriname  SUR 2008    0
11076       76                         Uruguay  URY 2008    0
11077       77                       Venezuela  VEN 2008    0
11078       78                      Bangladesh  BGD 2008    0
11079       80                           India  IND 2008    0
11080       81                       Indonesia  IDN 2008    1
11081       82              Iran, Islamic Rep.  IRN 2008    0
11082       83                            Iraq  IRQ 2008    0
11083       84                          Israel  ISR 2008    0
11084       85                           Japan  JPN 2008    0
11085       86                          Jordan  JOR 2008    0
11086       87             Korea, South (Rep.)  KOR 2008    0
11087       88                        Laos PDR  LAO 2008    0
11088       89                        Malaysia  MYS 2008    0
11089       90                        Mongolia  MNG 2008    0
11090       91                         Myanmar  MMR 2008    0
11091       92                           Nepal  NPL 2008    0
11092       93                        Pakistan  PAK 2008    0
11093       94                     Philippines  PHL 2008    0
11094       95                       Singapore  SGP 2008    0
11095       96                       Sri Lanka  LKA 2008    0
11096       97            Syrian Arab Republic  SYR 2008    0
11097       98                          Taiwan    . 2008    0
11098       99                        Thailand  THA 2008    0
11099      100             Yemen Arab Republic    . 2008    .
11100      101                         Austria  AUT 2008    0
11101      102                         Belgium  BEL 2008    1
11102      103                        Bulgaria  BGR 2008    0
11103      104                  Czechoslovakia    . 2008    .
11104      105                         Denmark  DNK 2008    0
11105      106                         Finland  FIN 2008    0
11106      108                   Germany, West    . 2008    .
11107      109                   Germany, East    . 2008    .
11108      110                          Greece  GRC 2008    0
11109      111                         Hungary  HUN 2008    0
11110      112                         Iceland  ISL 2008    0
11111      113                         Ireland  IRL 2008    0
11112      114                           Italy  ITA 2008    1
11113      115                      Luxembourg  LUX 2008    0
11114      116                           Malta  MLT 2008    0
11115      117                     Netherlands  NLD 2008    0
11116      118                          Norway  NOR 2008    0
11117      119                          Poland  POL 2008    0
11118      120                        Portugal  PRT 2008    0
11119      121                         Romania  ROM 2008    0
11120      122                           Spain  ESP 2008    0
11121      123                          Sweden  SWE 2008    0
11122      124                     Switzerland  CHE 2008    0
11123      125                          Turkey  TUR 2008    0
11124      128                      Yugoslavia    . 2008    .
11125      129                       Australia  AUS 2008    0
11126      130                            Fiji  FJI 2008    0
11127      131                     New Zealand  NZL 2008    0
11128      132                Papua New Guinea  PNG 2008    0
11129      133                 Solomon Islands  SLB 2008    0
11130      134                         Vanuatu  VUT 2008    0
11131      135                   Western Samoa  WSM 2008    0
11132      136                         Bahrain  BHR 2008    0
11133      137                          Kuwait  KWT 2008    0
11134      138                            Oman  OMN 2008    0
11135      139                           Qatar  QAT 2008    0
11136      140                    Saudi Arabia  SAU 2008    0
11137      141            United Arab Emirates  ARE 2008    0
11138      142                     Afghanistan  AFG 2008    0
11139      143                         Albania  ALB 2008    0
11140      144                         Antigua  ATG 2008    0
11141      145                         Armenia  ARM 2008    0
11142      146                           Nauru    . 2008    0
11143      147                      Azerbaijan  AZE 2008    0
11144      148                          Bhutan  BTN 2008    0
11145      149                         Belarus  BLR 2008    0
11146      150              Bosnia-Herzegovina  BIH 2008    0
11147      151                          Brunei  BRN 2008    0
11148      152                        Cambodia  KHM 2008    0
11149      153                         Croatia  HRV 2008    1
11150      154                            Cuba  CUB 2008    0
11151      155                  Czech Republic  CZE 2008    0
11152      156                 Slovak Republic  SVK 2008    0
11153      157                        Dominica  DMA 2008    0
11154      158               Equatorial Guinea  GNQ 2008    0
11155      159                         Estonia  EST 2008    0
11156      160                         Eritrea  ERI 2008    0
11157      161                         Georgia  GEO 2008    0
11158      162                      Kazakhstan  KAZ 2008    0
11159      163                        Kiribati  KIR 2008    0
11160      164        Korea, North (Dem. Rep.)  PRK 2008    0
11161      165                      Kyrgyzstan  KGZ 2008    0
11162      166                          Latvia  LVA 2008    0
11163      167                         Lebanon  LBN 2008    0
11164      168                       Lithuania  LTU 2008    0
11165      169                       Macedonia  MKD 2008    0
11166      170                 Maldive Islands  MDV 2008    0
11167      171                         Moldova  MDA 2008    0
11168      172                         Namibia  NAM 2008    0
11169      174                       St. Lucia  LCA 2008    0
11170      175           Sao Tome and Principe  STP 2008    0
11171      176                        Slovenia  SVN 2008    0
11172      177                      Somaliland    . 2008    0
11173      178               Yemen PDR (South)    . 2008    .
11174      179             St. Kitts and Nevis  KNA 2008    0
11175      180                     St. Vincent  VCT 2008    0
11176      181                      Tajikistan  TJK 2008    0
11177      182                    Turkmenistan  TKM 2008    0
11178      183                         Ukraine  UKR 2008    0
11179      184                           Tonga  TON 2008    0
11180      185                      Uzbekistan  UZB 2008    0
11181      186                         Vietnam  VNM 2008    1
11182      187                          Cyprus  CYP 2008    .
11183      188                    Greek Cyprus    . 2008    0
11184      189 Micronesia, Federated States of  FSM 2008    0
11185      190               Republic of Yemen  YEM 2008    0
11186      191                         Germany  DEU 2008    0
11187      192                     Yugoslavia2  YUG 2008    0
11188      193                           Libya  LBY 2008    1
11189      194                       Ethiopia2  ETH 2008    0
11190      195                         Andorra  ADO 2008    0
11191      196                   Liechtenstein  LIE 2008    0
11192      197                Marshall Islands  MHL 2008    0
11193      198                           Palau  PLW 2008    0
11194      199                      San Marino  SMR 2008    0
11195        1                         Algeria  DZA 2009    0
11196        2                          Angola  AGO 2009    0
11197        3                           Benin  BEN 2009    0
11198        4                        Botswana  BWA 2009    0
11199        5                    Burkina Faso  BFA 2009    1
11200        6                         Burundi  BDI 2009    0
11201        7                        Cameroon  CMR 2009    0
11202        8                      Cape Verde  CPV 2009    0
11203        9        Central African Republic  CAF 2009    0
11204       10                            Chad  TCD 2009    0
11205       11                         Comoros  COM 2009    0
11206       12                           Congo  COG 2009    0
11207       13                        Djibouti  DJI 2009    0
11208       14                Egypt, Arab Rep.  EGY 2009    0
11209       15                        Ethiopia    . 2009    0
11210       16                           Gabon  GAB 2009    0
11211       17                     Gambia, The  GMB 2009    0
11212       18                           Ghana  GHA 2009    0
11213       19                          Guinea  GIN 2009    0
11214       20                   Guinea-Bissau  GNB 2009    0
11215       21                   Cote d'Ivoire  CIV 2009    0
11216       22                           Kenya  KEN 2009    0
11217       23                         Lesotho  LSO 2009    0
11218       24                         Liberia  LBR 2009    0
11219       25                      Madagascar  MDG 2009    0
11220       26                          Malawi  MWI 2009    0
11221       27                            Mali  MLI 2009    0
11222       28                      Mauritania  MRT 2009    0
11223       29                       Mauritius  MUS 2009    0
11224       30                         Morocco  MAR 2009    0
11225       31                      Mozambique  MOZ 2009    0
11226       32                           Niger  NER 2009    0
11227       33                         Nigeria  NGA 2009    0
11228       34                          Rwanda  RWA 2009    0
11229       35                         Senegal  SEN 2009    0
11230       36                      Seychelles  SYC 2009    0
11231       37                    Sierra Leone  SLE 2009    0
11232       38                         Somalia  SOM 2009    0
11233       39                    South Africa  ZAF 2009    0
11234       40                           Sudan  SDN 2009    0
11235       41                       Swaziland  SWZ 2009    0
11236       42                        Tanzania  TZA 2009    0
11237       43                            Togo  TGO 2009    0
11238       44                         Tunisia  TUN 2009    0
11239       45                          Uganda  UGA 2009    1
11240       46                           Zaire  ZAR 2009    0
11241       47                          Zambia  ZMB 2009    0
11242       48                        Zimbabwe  ZWE 2009    0
11243       49                    Bahamas, The  BHS 2009    0
11244       50                        Barbados  BRB 2009    0
11245       51                          Belize  BLZ 2009    0
11246       52                          Canada  CAN 2009    0
11247       53                      Costa Rica  CRI 2009    1
11248       54              Dominican Republic  DOM 2009    0
11249       55                     El Salvador  SLV 2009    0
11250       56                         Grenada  GRD 2009    0
11251       57                       Guatemala  GTM 2009    0
11252       58                           Haiti  HTI 2009    0
11253       59                        Honduras  HND 2009    0
11254       60                         Jamaica  JAM 2009    0
11255       61                          Mexico  MEX 2009    1
11256       62                       Nicaragua  NIC 2009    0
11257       63                          Panama  PAN 2009    0
11258       64             Trinidad and Tobago  TTO 2009    0
11259       66                       Argentina  ARG 2009    0
11260       67                         Bolivia  BOL 2009    0
11261       68                          Brazil  BRA 2009    0
11262       69                           Chile  CHL 2009    0
11263       70                        Colombia  COL 2009    0
11264       71                         Ecuador  ECU 2009    0
11265       72                          Guyana  GUY 2009    0
11266       73                        Paraguay  PRY 2009    0
11267       74                            Peru  PER 2009    0
11268       75                        Suriname  SUR 2009    0
11269       76                         Uruguay  URY 2009    0
11270       77                       Venezuela  VEN 2009    0
11271       78                      Bangladesh  BGD 2009    0
11272       80                           India  IND 2009    0
11273       81                       Indonesia  IDN 2009    0
11274       82              Iran, Islamic Rep.  IRN 2009    0
11275       83                            Iraq  IRQ 2009    0
11276       84                          Israel  ISR 2009    0
11277       85                           Japan  JPN 2009    1
11278       86                          Jordan  JOR 2009    0
11279       87             Korea, South (Rep.)  KOR 2009    0
11280       88                        Laos PDR  LAO 2009    0
11281       89                        Malaysia  MYS 2009    0
11282       90                        Mongolia  MNG 2009    0
11283       91                         Myanmar  MMR 2009    0
11284       92                           Nepal  NPL 2009    0
11285       93                        Pakistan  PAK 2009    0
11286       94                     Philippines  PHL 2009    0
11287       95                       Singapore  SGP 2009    0
11288       96                       Sri Lanka  LKA 2009    0
11289       97            Syrian Arab Republic  SYR 2009    0
11290       98                          Taiwan    . 2009    0
11291       99                        Thailand  THA 2009    0
11292      100             Yemen Arab Republic    . 2009    0
11293      101                         Austria  AUT 2009    1
11294      102                         Belgium  BEL 2009    0
11295      103                        Bulgaria  BGR 2009    0
11296      104                  Czechoslovakia    . 2009    0
11297      105                         Denmark  DNK 2009    0
11298      106                         Finland  FIN 2009    0
11299      108                   Germany, West    . 2009    0
11300      109                   Germany, East    . 2009    0
11301      110                          Greece  GRC 2009    0
11302      111                         Hungary  HUN 2009    0
11303      112                         Iceland  ISL 2009    0
11304      113                         Ireland  IRL 2009    0
11305      114                           Italy  ITA 2009    0
11306      115                      Luxembourg  LUX 2009    0
11307      116                           Malta  MLT 2009    0
11308      117                     Netherlands  NLD 2009    0
11309      118                          Norway  NOR 2009    0
11310      119                          Poland  POL 2009    0
11311      120                        Portugal  PRT 2009    0
11312      121                         Romania  ROM 2009    0
11313      122                           Spain  ESP 2009    0
11314      123                          Sweden  SWE 2009    0
11315      124                     Switzerland  CHE 2009    0
11316      125                          Turkey  TUR 2009    1
11317      128                      Yugoslavia    . 2009    0
11318      129                       Australia  AUS 2009    0
11319      130                            Fiji  FJI 2009    0
11320      131                     New Zealand  NZL 2009    0
11321      132                Papua New Guinea  PNG 2009    0
11322      133                 Solomon Islands  SLB 2009    0
11323      134                         Vanuatu  VUT 2009    0
11324      135                   Western Samoa  WSM 2009    0
11325      136                         Bahrain  BHR 2009    0
11326      137                          Kuwait  KWT 2009    0
11327      138                            Oman  OMN 2009    0
11328      139                           Qatar  QAT 2009    0
11329      140                    Saudi Arabia  SAU 2009    0
11330      141            United Arab Emirates  ARE 2009    0
11331      142                     Afghanistan  AFG 2009    0
11332      143                         Albania  ALB 2009    0
11333      144                         Antigua  ATG 2009    0
11334      145                         Armenia  ARM 2009    0
11335      146                           Nauru    . 2009    0
11336      147                      Azerbaijan  AZE 2009    0
11337      148                          Bhutan  BTN 2009    0
11338      149                         Belarus  BLR 2009    0
11339      150              Bosnia-Herzegovina  BIH 2009    0
11340      151                          Brunei  BRN 2009    0
11341      152                        Cambodia  KHM 2009    0
11342      153                         Croatia  HRV 2009    1
11343      154                            Cuba  CUB 2009    0
11344      155                  Czech Republic  CZE 2009    0
11345      156                 Slovak Republic  SVK 2009    0
11346      157                        Dominica  DMA 2009    0
11347      158               Equatorial Guinea  GNQ 2009    0
11348      159                         Estonia  EST 2009    0
11349      160                         Eritrea  ERI 2009    0
11350      161                         Georgia  GEO 2009    0
11351      162                      Kazakhstan  KAZ 2009    0
11352      163                        Kiribati  KIR 2009    0
11353      164        Korea, North (Dem. Rep.)  PRK 2009    0
11354      165                      Kyrgyzstan  KGZ 2009    0
11355      166                          Latvia  LVA 2009    0
11356      167                         Lebanon  LBN 2009    0
11357      168                       Lithuania  LTU 2009    0
11358      169                       Macedonia  MKD 2009    0
11359      170                 Maldive Islands  MDV 2009    0
11360      171                         Moldova  MDA 2009    0
11361      172                         Namibia  NAM 2009    0
11362      174                       St. Lucia  LCA 2009    0
11363      175           Sao Tome and Principe  STP 2009    0
11364      176                        Slovenia  SVN 2009    0
11365      177                      Somaliland    . 2009    0
11366      178               Yemen PDR (South)    . 2009    0
11367      179             St. Kitts and Nevis  KNA 2009    0
11368      180                     St. Vincent  VCT 2009    0
11369      181                      Tajikistan  TJK 2009    0
11370      182                    Turkmenistan  TKM 2009    0
11371      183                         Ukraine  UKR 2009    0
11372      184                           Tonga  TON 2009    0
11373      185                      Uzbekistan  UZB 2009    0
11374      186                         Vietnam  VNM 2009    1
11375      187                          Cyprus  CYP 2009    0
11376      188                    Greek Cyprus    . 2009    0
11377      189 Micronesia, Federated States of  FSM 2009    0
11378      190               Republic of Yemen  YEM 2009    0
11379      191                         Germany  DEU 2009    0
11380      192                     Yugoslavia2  YUG 2009    0
11381      193                           Libya  LBY 2009    1
11382      194                       Ethiopia2  ETH 2009    0
11383      195                         Andorra  ADO 2009    0
11384      196                   Liechtenstein  LIE 2009    0
11385      197                Marshall Islands  MHL 2009    0
11386      198                           Palau  PLW 2009    0
11387      199                      San Marino  SMR 2009    0
11388        1                         Algeria  DZA 2010    0
11389        2                          Angola  AGO 2010    0
11390        3                           Benin  BEN 2010    0
11391        4                        Botswana  BWA 2010    0
11392        5                    Burkina Faso  BFA 2010    0
11393        6                         Burundi  BDI 2010    0
11394        7                        Cameroon  CMR 2010    0
11395        8                      Cape Verde  CPV 2010    0
11396        9        Central African Republic  CAF 2010    0
11397       10                            Chad  TCD 2010    0
11398       11                         Comoros  COM 2010    0
11399       12                           Congo  COG 2010    0
11400       13                        Djibouti  DJI 2010    0
11401       14                Egypt, Arab Rep.  EGY 2010    0
11402       15                        Ethiopia    . 2010    0
11403       16                           Gabon  GAB 2010    1
11404       17                     Gambia, The  GMB 2010    0
11405       18                           Ghana  GHA 2010    0
11406       19                          Guinea  GIN 2010    0
11407       20                   Guinea-Bissau  GNB 2010    0
11408       21                   Cote d'Ivoire  CIV 2010    0
11409       22                           Kenya  KEN 2010    0
11410       23                         Lesotho  LSO 2010    0
11411       24                         Liberia  LBR 2010    0
11412       25                      Madagascar  MDG 2010    0
11413       26                          Malawi  MWI 2010    0
11414       27                            Mali  MLI 2010    0
11415       28                      Mauritania  MRT 2010    0
11416       29                       Mauritius  MUS 2010    0
11417       30                         Morocco  MAR 2010    0
11418       31                      Mozambique  MOZ 2010    0
11419       32                           Niger  NER 2010    0
11420       33                         Nigeria  NGA 2010    1
11421       34                          Rwanda  RWA 2010    0
11422       35                         Senegal  SEN 2010    0
11423       36                      Seychelles  SYC 2010    0
11424       37                    Sierra Leone  SLE 2010    0
11425       38                         Somalia  SOM 2010    0
11426       39                    South Africa  ZAF 2010    0
11427       40                           Sudan  SDN 2010    0
11428       41                       Swaziland  SWZ 2010    0
11429       42                        Tanzania  TZA 2010    0
11430       43                            Togo  TGO 2010    0
11431       44                         Tunisia  TUN 2010    0
11432       45                          Uganda  UGA 2010    1
11433       46                           Zaire  ZAR 2010    0
11434       47                          Zambia  ZMB 2010    0
11435       48                        Zimbabwe  ZWE 2010    0
11436       49                    Bahamas, The  BHS 2010    0
11437       50                        Barbados  BRB 2010    0
11438       51                          Belize  BLZ 2010    0
11439       52                          Canada  CAN 2010    0
11440       53                      Costa Rica  CRI 2010    0
11441       54              Dominican Republic  DOM 2010    0
11442       55                     El Salvador  SLV 2010    0
11443       56                         Grenada  GRD 2010    0
11444       57                       Guatemala  GTM 2010    0
11445       58                           Haiti  HTI 2010    0
11446       59                        Honduras  HND 2010    0
11447       60                         Jamaica  JAM 2010    0
11448       61                          Mexico  MEX 2010    1
11449       62                       Nicaragua  NIC 2010    0
11450       63                          Panama  PAN 2010    0
11451       64             Trinidad and Tobago  TTO 2010    0
11452       66                       Argentina  ARG 2010    0
11453       67                         Bolivia  BOL 2010    0
11454       68                          Brazil  BRA 2010    1
11455       69                           Chile  CHL 2010    0
11456       70                        Colombia  COL 2010    0
11457       71                         Ecuador  ECU 2010    0
11458       72                          Guyana  GUY 2010    0
11459       73                        Paraguay  PRY 2010    0
11460       74                            Peru  PER 2010    0
11461       75                        Suriname  SUR 2010    0
11462       76                         Uruguay  URY 2010    0
11463       77                       Venezuela  VEN 2010    0
11464       78                      Bangladesh  BGD 2010    0
11465       80                           India  IND 2010    0
11466       81                       Indonesia  IDN 2010    0
11467       82              Iran, Islamic Rep.  IRN 2010    0
11468       83                            Iraq  IRQ 2010    0
11469       84                          Israel  ISR 2010    0
11470       85                           Japan  JPN 2010    1
11471       86                          Jordan  JOR 2010    0
11472       87             Korea, South (Rep.)  KOR 2010    0
11473       88                        Laos PDR  LAO 2010    0
11474       89                        Malaysia  MYS 2010    0
11475       90                        Mongolia  MNG 2010    0
11476       91                         Myanmar  MMR 2010    0
11477       92                           Nepal  NPL 2010    0
11478       93                        Pakistan  PAK 2010    0
11479       94                     Philippines  PHL 2010    0
11480       95                       Singapore  SGP 2010    0
11481       96                       Sri Lanka  LKA 2010    0
11482       97            Syrian Arab Republic  SYR 2010    0
11483       98                          Taiwan    . 2010    0
11484       99                        Thailand  THA 2010    0
11485      100             Yemen Arab Republic    . 2010    0
11486      101                         Austria  AUT 2010    1
11487      102                         Belgium  BEL 2010    0
11488      103                        Bulgaria  BGR 2010    0
11489      104                  Czechoslovakia    . 2010    0
11490      105                         Denmark  DNK 2010    0
11491      106                         Finland  FIN 2010    0
11492      108                   Germany, West    . 2010    0
11493      109                   Germany, East    . 2010    0
11494      110                          Greece  GRC 2010    0
11495      111                         Hungary  HUN 2010    0
11496      112                         Iceland  ISL 2010    0
11497      113                         Ireland  IRL 2010    0
11498      114                           Italy  ITA 2010    0
11499      115                      Luxembourg  LUX 2010    0
11500      116                           Malta  MLT 2010    0
11501      117                     Netherlands  NLD 2010    0
11502      118                          Norway  NOR 2010    0
11503      119                          Poland  POL 2010    0
11504      120                        Portugal  PRT 2010    0
11505      121                         Romania  ROM 2010    0
11506      122                           Spain  ESP 2010    0
11507      123                          Sweden  SWE 2010    0
11508      124                     Switzerland  CHE 2010    0
11509      125                          Turkey  TUR 2010    1
11510      128                      Yugoslavia    . 2010    0
11511      129                       Australia  AUS 2010    0
11512      130                            Fiji  FJI 2010    0
11513      131                     New Zealand  NZL 2010    0
11514      132                Papua New Guinea  PNG 2010    0
11515      133                 Solomon Islands  SLB 2010    0
11516      134                         Vanuatu  VUT 2010    0
11517      135                   Western Samoa  WSM 2010    0
11518      136                         Bahrain  BHR 2010    0
11519      137                          Kuwait  KWT 2010    0
11520      138                            Oman  OMN 2010    0
11521      139                           Qatar  QAT 2010    0
11522      140                    Saudi Arabia  SAU 2010    0
11523      141            United Arab Emirates  ARE 2010    0
11524      142                     Afghanistan  AFG 2010    0
11525      143                         Albania  ALB 2010    0
11526      144                         Antigua  ATG 2010    0
11527      145                         Armenia  ARM 2010    0
11528      146                           Nauru    . 2010    0
11529      147                      Azerbaijan  AZE 2010    0
11530      148                          Bhutan  BTN 2010    0
11531      149                         Belarus  BLR 2010    0
11532      150              Bosnia-Herzegovina  BIH 2010    1
11533      151                          Brunei  BRN 2010    0
11534      152                        Cambodia  KHM 2010    0
11535      153                         Croatia  HRV 2010    0
11536      154                            Cuba  CUB 2010    0
11537      155                  Czech Republic  CZE 2010    0
11538      156                 Slovak Republic  SVK 2010    0
11539      157                        Dominica  DMA 2010    0
11540      158               Equatorial Guinea  GNQ 2010    0
11541      159                         Estonia  EST 2010    0
11542      160                         Eritrea  ERI 2010    0
11543      161                         Georgia  GEO 2010    0
11544      162                      Kazakhstan  KAZ 2010    0
11545      163                        Kiribati  KIR 2010    0
11546      164        Korea, North (Dem. Rep.)  PRK 2010    0
11547      165                      Kyrgyzstan  KGZ 2010    0
11548      166                          Latvia  LVA 2010    0
11549      167                         Lebanon  LBN 2010    1
11550      168                       Lithuania  LTU 2010    0
11551      169                       Macedonia  MKD 2010    0
11552      170                 Maldive Islands  MDV 2010    0
11553      171                         Moldova  MDA 2010    0
11554      172                         Namibia  NAM 2010    0
11555      174                       St. Lucia  LCA 2010    0
11556      175           Sao Tome and Principe  STP 2010    0
11557      176                        Slovenia  SVN 2010    0
11558      177                      Somaliland    . 2010    0
11559      178               Yemen PDR (South)    . 2010    0
11560      179             St. Kitts and Nevis  KNA 2010    0
11561      180                     St. Vincent  VCT 2010    0
11562      181                      Tajikistan  TJK 2010    0
11563      182                    Turkmenistan  TKM 2010    0
11564      183                         Ukraine  UKR 2010    0
11565      184                           Tonga  TON 2010    0
11566      185                      Uzbekistan  UZB 2010    0
11567      186                         Vietnam  VNM 2010    0
11568      187                          Cyprus  CYP 2010    0
11569      188                    Greek Cyprus    . 2010    0
11570      189 Micronesia, Federated States of  FSM 2010    0
11571      190               Republic of Yemen  YEM 2010    0
11572      191                         Germany  DEU 2010    0
11573      192                     Yugoslavia2  YUG 2010    0
11574      193                           Libya  LBY 2010    0
11575      194                       Ethiopia2  ETH 2010    0
11576      195                         Andorra  ADO 2010    0
11577      196                   Liechtenstein  LIE 2010    0
11578      197                Marshall Islands  MHL 2010    0
11579      198                           Palau  PLW 2010    0
11580      199                      San Marino  SMR 2010    0
11581        1                         Algeria  DZA 2011    0
11582        2                          Angola  AGO 2011    0
11583        3                           Benin  BEN 2011    0
11584        4                        Botswana  BWA 2011    0
11585        5                    Burkina Faso  BFA 2011    0
11586        6                         Burundi  BDI 2011    0
11587        7                        Cameroon  CMR 2011    0
11588        8                      Cape Verde  CPV 2011    0
11589        9        Central African Republic  CAF 2011    0
11590       10                            Chad  TCD 2011    0
11591       11                         Comoros  COM 2011    0
11592       12                           Congo  COG 2011    0
11593       13                        Djibouti  DJI 2011    0
11594       14                Egypt, Arab Rep.  EGY 2011    0
11595       15                        Ethiopia    . 2011    0
11596       16                           Gabon  GAB 2011    1
11597       17                     Gambia, The  GMB 2011    0
11598       18                           Ghana  GHA 2011    0
11599       19                          Guinea  GIN 2011    0
11600       20                   Guinea-Bissau  GNB 2011    0
11601       21                   Cote d'Ivoire  CIV 2011    0
11602       22                           Kenya  KEN 2011    0
11603       23                         Lesotho  LSO 2011    0
11604       24                         Liberia  LBR 2011    0
11605       25                      Madagascar  MDG 2011    0
11606       26                          Malawi  MWI 2011    0
11607       27                            Mali  MLI 2011    0
11608       28                      Mauritania  MRT 2011    0
11609       29                       Mauritius  MUS 2011    0
11610       30                         Morocco  MAR 2011    0
11611       31                      Mozambique  MOZ 2011    0
11612       32                           Niger  NER 2011    0
11613       33                         Nigeria  NGA 2011    1
11614       34                          Rwanda  RWA 2011    0
11615       35                         Senegal  SEN 2011    0
11616       36                      Seychelles  SYC 2011    0
11617       37                    Sierra Leone  SLE 2011    0
11618       38                         Somalia  SOM 2011    0
11619       39                    South Africa  ZAF 2011    1
11620       40                           Sudan  SDN 2011    0
11621       41                       Swaziland  SWZ 2011    0
11622       42                        Tanzania  TZA 2011    0
11623       43                            Togo  TGO 2011    0
11624       44                         Tunisia  TUN 2011    0
11625       45                          Uganda  UGA 2011    0
11626       46                           Zaire  ZAR 2011    0
11627       47                          Zambia  ZMB 2011    0
11628       48                        Zimbabwe  ZWE 2011    0
11629       49                    Bahamas, The  BHS 2011    0
11630       50                        Barbados  BRB 2011    0
11631       51                          Belize  BLZ 2011    0
11632       52                          Canada  CAN 2011    0
11633       53                      Costa Rica  CRI 2011    0
11634       54              Dominican Republic  DOM 2011    0
11635       55                     El Salvador  SLV 2011    0
11636       56                         Grenada  GRD 2011    0
11637       57                       Guatemala  GTM 2011    0
11638       58                           Haiti  HTI 2011    0
11639       59                        Honduras  HND 2011    0
11640       60                         Jamaica  JAM 2011    0
11641       61                          Mexico  MEX 2011    0
11642       62                       Nicaragua  NIC 2011    0
11643       63                          Panama  PAN 2011    0
11644       64             Trinidad and Tobago  TTO 2011    0
11645       66                       Argentina  ARG 2011    0
11646       67                         Bolivia  BOL 2011    0
11647       68                          Brazil  BRA 2011    1
11648       69                           Chile  CHL 2011    0
11649       70                        Colombia  COL 2011    1
11650       71                         Ecuador  ECU 2011    0
11651       72                          Guyana  GUY 2011    0
11652       73                        Paraguay  PRY 2011    0
11653       74                            Peru  PER 2011    0
11654       75                        Suriname  SUR 2011    0
11655       76                         Uruguay  URY 2011    0
11656       77                       Venezuela  VEN 2011    0
11657       78                      Bangladesh  BGD 2011    0
11658       80                           India  IND 2011    1
11659       81                       Indonesia  IDN 2011    0
11660       82              Iran, Islamic Rep.  IRN 2011    0
11661       83                            Iraq  IRQ 2011    0
11662       84                          Israel  ISR 2011    0
11663       85                           Japan  JPN 2011    0
11664       86                          Jordan  JOR 2011    0
11665       87             Korea, South (Rep.)  KOR 2011    0
11666       88                        Laos PDR  LAO 2011    0
11667       89                        Malaysia  MYS 2011    0
11668       90                        Mongolia  MNG 2011    0
11669       91                         Myanmar  MMR 2011    0
11670       92                           Nepal  NPL 2011    0
11671       93                        Pakistan  PAK 2011    0
11672       94                     Philippines  PHL 2011    0
11673       95                       Singapore  SGP 2011    0
11674       96                       Sri Lanka  LKA 2011    0
11675       97            Syrian Arab Republic  SYR 2011    0
11676       98                          Taiwan    . 2011    0
11677       99                        Thailand  THA 2011    0
11678      100             Yemen Arab Republic    . 2011    0
11679      101                         Austria  AUT 2011    0
11680      102                         Belgium  BEL 2011    0
11681      103                        Bulgaria  BGR 2011    0
11682      104                  Czechoslovakia    . 2011    0
11683      105                         Denmark  DNK 2011    0
11684      106                         Finland  FIN 2011    0
11685      108                   Germany, West    . 2011    0
11686      109                   Germany, East    . 2011    0
11687      110                          Greece  GRC 2011    0
11688      111                         Hungary  HUN 2011    0
11689      112                         Iceland  ISL 2011    0
11690      113                         Ireland  IRL 2011    0
11691      114                           Italy  ITA 2011    0
11692      115                      Luxembourg  LUX 2011    0
11693      116                           Malta  MLT 2011    0
11694      117                     Netherlands  NLD 2011    0
11695      118                          Norway  NOR 2011    0
11696      119                          Poland  POL 2011    0
11697      120                        Portugal  PRT 2011    1
11698      121                         Romania  ROM 2011    0
11699      122                           Spain  ESP 2011    0
11700      123                          Sweden  SWE 2011    0
11701      124                     Switzerland  CHE 2011    0
11702      125                          Turkey  TUR 2011    0
11703      128                      Yugoslavia    . 2011    0
11704      129                       Australia  AUS 2011    0
11705      130                            Fiji  FJI 2011    0
11706      131                     New Zealand  NZL 2011    0
11707      132                Papua New Guinea  PNG 2011    0
11708      133                 Solomon Islands  SLB 2011    0
11709      134                         Vanuatu  VUT 2011    0
11710      135                   Western Samoa  WSM 2011    0
11711      136                         Bahrain  BHR 2011    0
11712      137                          Kuwait  KWT 2011    0
11713      138                            Oman  OMN 2011    0
11714      139                           Qatar  QAT 2011    0
11715      140                    Saudi Arabia  SAU 2011    0
11716      141            United Arab Emirates  ARE 2011    0
11717      142                     Afghanistan  AFG 2011    0
11718      143                         Albania  ALB 2011    0
11719      144                         Antigua  ATG 2011    0
11720      145                         Armenia  ARM 2011    0
11721      146                           Nauru    . 2011    0
11722      147                      Azerbaijan  AZE 2011    0
11723      148                          Bhutan  BTN 2011    0
11724      149                         Belarus  BLR 2011    0
11725      150              Bosnia-Herzegovina  BIH 2011    1
11726      151                          Brunei  BRN 2011    0
11727      152                        Cambodia  KHM 2011    0
11728      153                         Croatia  HRV 2011    0
11729      154                            Cuba  CUB 2011    0
11730      155                  Czech Republic  CZE 2011    0
11731      156                 Slovak Republic  SVK 2011    0
11732      157                        Dominica  DMA 2011    0
11733      158               Equatorial Guinea  GNQ 2011    0
11734      159                         Estonia  EST 2011    0
11735      160                         Eritrea  ERI 2011    0
11736      161                         Georgia  GEO 2011    0
11737      162                      Kazakhstan  KAZ 2011    0
11738      163                        Kiribati  KIR 2011    0
11739      164        Korea, North (Dem. Rep.)  PRK 2011    0
11740      165                      Kyrgyzstan  KGZ 2011    0
11741      166                          Latvia  LVA 2011    0
11742      167                         Lebanon  LBN 2011    1
11743      168                       Lithuania  LTU 2011    0
11744      169                       Macedonia  MKD 2011    0
11745      170                 Maldive Islands  MDV 2011    0
11746      171                         Moldova  MDA 2011    0
11747      172                         Namibia  NAM 2011    0
11748      174                       St. Lucia  LCA 2011    0
11749      175           Sao Tome and Principe  STP 2011    0
11750      176                        Slovenia  SVN 2011    0
11751      177                      Somaliland    . 2011    0
11752      178               Yemen PDR (South)    . 2011    0
11753      179             St. Kitts and Nevis  KNA 2011    0
11754      180                     St. Vincent  VCT 2011    0
11755      181                      Tajikistan  TJK 2011    0
11756      182                    Turkmenistan  TKM 2011    0
11757      183                         Ukraine  UKR 2011    0
11758      184                           Tonga  TON 2011    0
11759      185                      Uzbekistan  UZB 2011    0
11760      186                         Vietnam  VNM 2011    0
11761      187                          Cyprus  CYP 2011    0
11762      188                    Greek Cyprus    . 2011    0
11763      189 Micronesia, Federated States of  FSM 2011    0
11764      190               Republic of Yemen  YEM 2011    0
11765      191                         Germany  DEU 2011    1
11766      192                     Yugoslavia2  YUG 2011    0
11767      193                           Libya  LBY 2011    0
11768      194                       Ethiopia2  ETH 2011    0
11769      195                         Andorra  ADO 2011    0
11770      196                   Liechtenstein  LIE 2011    0
11771      197                Marshall Islands  MHL 2011    0
11772      198                           Palau  PLW 2011    0
11773      199                      San Marino  SMR 2011    0
11774        1                         Algeria  DZA 2012    0
11775        2                          Angola  AGO 2012    0
11776        3                           Benin  BEN 2012    0
11777        4                        Botswana  BWA 2012    0
11778        5                    Burkina Faso  BFA 2012    0
11779        6                         Burundi  BDI 2012    0
11780        7                        Cameroon  CMR 2012    0
11781        8                      Cape Verde  CPV 2012    0
11782        9        Central African Republic  CAF 2012    0
11783       10                            Chad  TCD 2012    0
11784       11                         Comoros  COM 2012    0
11785       12                           Congo  COG 2012    0
11786       13                        Djibouti  DJI 2012    0
11787       14                Egypt, Arab Rep.  EGY 2012    0
11788       15                        Ethiopia    . 2012    0
11789       16                           Gabon  GAB 2012    0
11790       17                     Gambia, The  GMB 2012    0
11791       18                           Ghana  GHA 2012    0
11792       19                          Guinea  GIN 2012    0
11793       20                   Guinea-Bissau  GNB 2012    0
11794       21                   Cote d'Ivoire  CIV 2012    0
11795       22                           Kenya  KEN 2012    0
11796       23                         Lesotho  LSO 2012    0
11797       24                         Liberia  LBR 2012    0
11798       25                      Madagascar  MDG 2012    0
11799       26                          Malawi  MWI 2012    0
11800       27                            Mali  MLI 2012    0
11801       28                      Mauritania  MRT 2012    0
11802       29                       Mauritius  MUS 2012    0
11803       30                         Morocco  MAR 2012    1
11804       31                      Mozambique  MOZ 2012    0
11805       32                           Niger  NER 2012    0
11806       33                         Nigeria  NGA 2012    0
11807       34                          Rwanda  RWA 2012    0
11808       35                         Senegal  SEN 2012    0
11809       36                      Seychelles  SYC 2012    0
11810       37                    Sierra Leone  SLE 2012    0
11811       38                         Somalia  SOM 2012    0
11812       39                    South Africa  ZAF 2012    1
11813       40                           Sudan  SDN 2012    0
11814       41                       Swaziland  SWZ 2012    0
11815       42                        Tanzania  TZA 2012    0
11816       43                            Togo  TGO 2012    0
11817       44                         Tunisia  TUN 2012    0
11818       45                          Uganda  UGA 2012    0
11819       46                           Zaire  ZAR 2012    0
11820       47                          Zambia  ZMB 2012    0
11821       48                        Zimbabwe  ZWE 2012    0
11822       49                    Bahamas, The  BHS 2012    0
11823       50                        Barbados  BRB 2012    0
11824       51                          Belize  BLZ 2012    0
11825       52                          Canada  CAN 2012    0
11826       53                      Costa Rica  CRI 2012    0
11827       54              Dominican Republic  DOM 2012    0
11828       55                     El Salvador  SLV 2012    0
11829       56                         Grenada  GRD 2012    0
11830       57                       Guatemala  GTM 2012    1
11831       58                           Haiti  HTI 2012    0
11832       59                        Honduras  HND 2012    0
11833       60                         Jamaica  JAM 2012    0
11834       61                          Mexico  MEX 2012    0
11835       62                       Nicaragua  NIC 2012    0
11836       63                          Panama  PAN 2012    0
11837       64             Trinidad and Tobago  TTO 2012    0
11838       66                       Argentina  ARG 2012    1
11839       67                         Bolivia  BOL 2012    0
11840       68                          Brazil  BRA 2012    0
11841       69                           Chile  CHL 2012    0
11842       70                        Colombia  COL 2012    1
11843       71                         Ecuador  ECU 2012    0
11844       72                          Guyana  GUY 2012    0
11845       73                        Paraguay  PRY 2012    0
11846       74                            Peru  PER 2012    0
11847       75                        Suriname  SUR 2012    0
11848       76                         Uruguay  URY 2012    0
11849       77                       Venezuela  VEN 2012    0
11850       78                      Bangladesh  BGD 2012    0
11851       80                           India  IND 2012    1
11852       81                       Indonesia  IDN 2012    0
11853       82              Iran, Islamic Rep.  IRN 2012    0
11854       83                            Iraq  IRQ 2012    0
11855       84                          Israel  ISR 2012    0
11856       85                           Japan  JPN 2012    0
11857       86                          Jordan  JOR 2012    0
11858       87             Korea, South (Rep.)  KOR 2012    0
11859       88                        Laos PDR  LAO 2012    0
11860       89                        Malaysia  MYS 2012    0
11861       90                        Mongolia  MNG 2012    0
11862       91                         Myanmar  MMR 2012    0
11863       92                           Nepal  NPL 2012    0
11864       93                        Pakistan  PAK 2012    1
11865       94                     Philippines  PHL 2012    0
11866       95                       Singapore  SGP 2012    0
11867       96                       Sri Lanka  LKA 2012    0
11868       97            Syrian Arab Republic  SYR 2012    0
11869       98                          Taiwan    . 2012    0
11870       99                        Thailand  THA 2012    0
11871      100             Yemen Arab Republic    . 2012    0
11872      101                         Austria  AUT 2012    0
11873      102                         Belgium  BEL 2012    0
11874      103                        Bulgaria  BGR 2012    0
11875      104                  Czechoslovakia    . 2012    0
11876      105                         Denmark  DNK 2012    0
11877      106                         Finland  FIN 2012    0
11878      108                   Germany, West    . 2012    0
11879      109                   Germany, East    . 2012    0
11880      110                          Greece  GRC 2012    0
11881      111                         Hungary  HUN 2012    0
11882      112                         Iceland  ISL 2012    0
11883      113                         Ireland  IRL 2012    0
11884      114                           Italy  ITA 2012    0
11885      115                      Luxembourg  LUX 2012    0
11886      116                           Malta  MLT 2012    0
11887      117                     Netherlands  NLD 2012    0
11888      118                          Norway  NOR 2012    0
11889      119                          Poland  POL 2012    0
11890      120                        Portugal  PRT 2012    1
11891      121                         Romania  ROM 2012    0
11892      122                           Spain  ESP 2012    0
11893      123                          Sweden  SWE 2012    0
11894      124                     Switzerland  CHE 2012    0
11895      125                          Turkey  TUR 2012    0
11896      128                      Yugoslavia    . 2012    0
11897      129                       Australia  AUS 2012    0
11898      130                            Fiji  FJI 2012    0
11899      131                     New Zealand  NZL 2012    0
11900      132                Papua New Guinea  PNG 2012    0
11901      133                 Solomon Islands  SLB 2012    0
11902      134                         Vanuatu  VUT 2012    0
11903      135                   Western Samoa  WSM 2012    0
11904      136                         Bahrain  BHR 2012    0
11905      137                          Kuwait  KWT 2012    0
11906      138                            Oman  OMN 2012    0
11907      139                           Qatar  QAT 2012    0
11908      140                    Saudi Arabia  SAU 2012    0
11909      141            United Arab Emirates  ARE 2012    0
11910      142                     Afghanistan  AFG 2012    0
11911      143                         Albania  ALB 2012    0
11912      144                         Antigua  ATG 2012    0
11913      145                         Armenia  ARM 2012    0
11914      146                           Nauru    . 2012    0
11915      147                      Azerbaijan  AZE 2012    1
11916      148                          Bhutan  BTN 2012    0
11917      149                         Belarus  BLR 2012    0
11918      150              Bosnia-Herzegovina  BIH 2012    0
11919      151                          Brunei  BRN 2012    0
11920      152                        Cambodia  KHM 2012    0
11921      153                         Croatia  HRV 2012    0
11922      154                            Cuba  CUB 2012    0
11923      155                  Czech Republic  CZE 2012    0
11924      156                 Slovak Republic  SVK 2012    0
11925      157                        Dominica  DMA 2012    0
11926      158               Equatorial Guinea  GNQ 2012    0
11927      159                         Estonia  EST 2012    0
11928      160                         Eritrea  ERI 2012    0
11929      161                         Georgia  GEO 2012    0
11930      162                      Kazakhstan  KAZ 2012    0
11931      163                        Kiribati  KIR 2012    0
11932      164        Korea, North (Dem. Rep.)  PRK 2012    0
11933      165                      Kyrgyzstan  KGZ 2012    0
11934      166                          Latvia  LVA 2012    0
11935      167                         Lebanon  LBN 2012    0
11936      168                       Lithuania  LTU 2012    0
11937      169                       Macedonia  MKD 2012    0
11938      170                 Maldive Islands  MDV 2012    0
11939      171                         Moldova  MDA 2012    0
11940      172                         Namibia  NAM 2012    0
11941      174                       St. Lucia  LCA 2012    0
11942      175           Sao Tome and Principe  STP 2012    0
11943      176                        Slovenia  SVN 2012    0
11944      177                      Somaliland    . 2012    0
11945      178               Yemen PDR (South)    . 2012    0
11946      179             St. Kitts and Nevis  KNA 2012    0
11947      180                     St. Vincent  VCT 2012    0
11948      181                      Tajikistan  TJK 2012    0
11949      182                    Turkmenistan  TKM 2012    0
11950      183                         Ukraine  UKR 2012    0
11951      184                           Tonga  TON 2012    0
11952      185                      Uzbekistan  UZB 2012    0
11953      186                         Vietnam  VNM 2012    0
11954      187                          Cyprus  CYP 2012    0
11955      188                    Greek Cyprus    . 2012    0
11956      189 Micronesia, Federated States of  FSM 2012    0
11957      190               Republic of Yemen  YEM 2012    0
11958      191                         Germany  DEU 2012    1
11959      192                     Yugoslavia2  YUG 2012    0
11960      193                           Libya  LBY 2012    0
11961      194                       Ethiopia2  ETH 2012    0
11962      195                         Andorra  ADO 2012    0
11963      196                   Liechtenstein  LIE 2012    0
11964      197                Marshall Islands  MHL 2012    0
11965      198                           Palau  PLW 2012    0
11966      199                      San Marino  SMR 2012    0
11967        1                         Algeria  DZA 2013    0
11968        2                          Angola  AGO 2013    0
11969        3                           Benin  BEN 2013    0
11970        4                        Botswana  BWA 2013    0
11971        5                    Burkina Faso  BFA 2013    0
11972        6                         Burundi  BDI 2013    0
11973        7                        Cameroon  CMR 2013    0
11974        8                      Cape Verde  CPV 2013    0
11975        9        Central African Republic  CAF 2013    0
11976       10                            Chad  TCD 2013    0
11977       11                         Comoros  COM 2013    0
11978       12                           Congo  COG 2013    0
11979       13                        Djibouti  DJI 2013    0
11980       14                Egypt, Arab Rep.  EGY 2013    0
11981       15                        Ethiopia    . 2013    0
11982       16                           Gabon  GAB 2013    0
11983       17                     Gambia, The  GMB 2013    0
11984       18                           Ghana  GHA 2013    0
11985       19                          Guinea  GIN 2013    0
11986       20                   Guinea-Bissau  GNB 2013    0
11987       21                   Cote d'Ivoire  CIV 2013    0
11988       22                           Kenya  KEN 2013    0
11989       23                         Lesotho  LSO 2013    0
11990       24                         Liberia  LBR 2013    0
11991       25                      Madagascar  MDG 2013    0
11992       26                          Malawi  MWI 2013    0
11993       27                            Mali  MLI 2013    0
11994       28                      Mauritania  MRT 2013    0
11995       29                       Mauritius  MUS 2013    0
11996       30                         Morocco  MAR 2013    1
11997       31                      Mozambique  MOZ 2013    0
11998       32                           Niger  NER 2013    0
11999       33                         Nigeria  NGA 2013    0
12000       34                          Rwanda  RWA 2013    1
12001       35                         Senegal  SEN 2013    0
12002       36                      Seychelles  SYC 2013    0
12003       37                    Sierra Leone  SLE 2013    0
12004       38                         Somalia  SOM 2013    0
12005       39                    South Africa  ZAF 2013    0
12006       40                           Sudan  SDN 2013    0
12007       41                       Swaziland  SWZ 2013    0
12008       42                        Tanzania  TZA 2013    0
12009       43                            Togo  TGO 2013    0
12010       44                         Tunisia  TUN 2013    0
12011       45                          Uganda  UGA 2013    0
12012       46                           Zaire  ZAR 2013    0
12013       47                          Zambia  ZMB 2013    0
12014       48                        Zimbabwe  ZWE 2013    0
12015       49                    Bahamas, The  BHS 2013    0
12016       50                        Barbados  BRB 2013    0
12017       51                          Belize  BLZ 2013    0
12018       52                          Canada  CAN 2013    0
12019       53                      Costa Rica  CRI 2013    0
12020       54              Dominican Republic  DOM 2013    0
12021       55                     El Salvador  SLV 2013    0
12022       56                         Grenada  GRD 2013    0
12023       57                       Guatemala  GTM 2013    1
12024       58                           Haiti  HTI 2013    0
12025       59                        Honduras  HND 2013    0
12026       60                         Jamaica  JAM 2013    0
12027       61                          Mexico  MEX 2013    0
12028       62                       Nicaragua  NIC 2013    0
12029       63                          Panama  PAN 2013    0
12030       64             Trinidad and Tobago  TTO 2013    0
12031       66                       Argentina  ARG 2013    1
12032       67                         Bolivia  BOL 2013    0
12033       68                          Brazil  BRA 2013    0
12034       69                           Chile  CHL 2013    0
12035       70                        Colombia  COL 2013    1
12036       71                         Ecuador  ECU 2013    0
12037       72                          Guyana  GUY 2013    0
12038       73                        Paraguay  PRY 2013    0
12039       74                            Peru  PER 2013    0
12040       75                        Suriname  SUR 2013    0
12041       76                         Uruguay  URY 2013    0
12042       77                       Venezuela  VEN 2013    0
12043       78                      Bangladesh  BGD 2013    0
12044       80                           India  IND 2013    0
12045       81                       Indonesia  IDN 2013    0
12046       82              Iran, Islamic Rep.  IRN 2013    0
12047       83                            Iraq  IRQ 2013    0
12048       84                          Israel  ISR 2013    0
12049       85                           Japan  JPN 2013    0
12050       86                          Jordan  JOR 2013    0
12051       87             Korea, South (Rep.)  KOR 2013    1
12052       88                        Laos PDR  LAO 2013    0
12053       89                        Malaysia  MYS 2013    0
12054       90                        Mongolia  MNG 2013    0
12055       91                         Myanmar  MMR 2013    0
12056       92                           Nepal  NPL 2013    0
12057       93                        Pakistan  PAK 2013    1
12058       94                     Philippines  PHL 2013    0
12059       95                       Singapore  SGP 2013    0
12060       96                       Sri Lanka  LKA 2013    0
12061       97            Syrian Arab Republic  SYR 2013    0
12062       98                          Taiwan    . 2013    0
12063       99                        Thailand  THA 2013    0
12064      100             Yemen Arab Republic    . 2013    0
12065      101                         Austria  AUT 2013    0
12066      102                         Belgium  BEL 2013    0
12067      103                        Bulgaria  BGR 2013    0
12068      104                  Czechoslovakia    . 2013    0
12069      105                         Denmark  DNK 2013    0
12070      106                         Finland  FIN 2013    0
12071      108                   Germany, West    . 2013    0
12072      109                   Germany, East    . 2013    0
12073      110                          Greece  GRC 2013    0
12074      111                         Hungary  HUN 2013    0
12075      112                         Iceland  ISL 2013    0
12076      113                         Ireland  IRL 2013    0
12077      114                           Italy  ITA 2013    0
12078      115                      Luxembourg  LUX 2013    1
12079      116                           Malta  MLT 2013    0
12080      117                     Netherlands  NLD 2013    0
12081      118                          Norway  NOR 2013    0
12082      119                          Poland  POL 2013    0
12083      120                        Portugal  PRT 2013    0
12084      121                         Romania  ROM 2013    0
12085      122                           Spain  ESP 2013    0
12086      123                          Sweden  SWE 2013    0
12087      124                     Switzerland  CHE 2013    0
12088      125                          Turkey  TUR 2013    0
12089      128                      Yugoslavia    . 2013    0
12090      129                       Australia  AUS 2013    1
12091      130                            Fiji  FJI 2013    0
12092      131                     New Zealand  NZL 2013    0
12093      132                Papua New Guinea  PNG 2013    0
12094      133                 Solomon Islands  SLB 2013    0
12095      134                         Vanuatu  VUT 2013    0
12096      135                   Western Samoa  WSM 2013    0
12097      136                         Bahrain  BHR 2013    0
12098      137                          Kuwait  KWT 2013    0
12099      138                            Oman  OMN 2013    0
12100      139                           Qatar  QAT 2013    0
12101      140                    Saudi Arabia  SAU 2013    0
12102      141            United Arab Emirates  ARE 2013    0
12103      142                     Afghanistan  AFG 2013    0
12104      143                         Albania  ALB 2013    0
12105      144                         Antigua  ATG 2013    0
12106      145                         Armenia  ARM 2013    0
12107      146                           Nauru    . 2013    0
12108      147                      Azerbaijan  AZE 2013    1
12109      148                          Bhutan  BTN 2013    0
12110      149                         Belarus  BLR 2013    0
12111      150              Bosnia-Herzegovina  BIH 2013    0
12112      151                          Brunei  BRN 2013    0
12113      152                        Cambodia  KHM 2013    0
12114      153                         Croatia  HRV 2013    0
12115      154                            Cuba  CUB 2013    0
12116      155                  Czech Republic  CZE 2013    0
12117      156                 Slovak Republic  SVK 2013    0
12118      157                        Dominica  DMA 2013    0
12119      158               Equatorial Guinea  GNQ 2013    0
12120      159                         Estonia  EST 2013    0
12121      160                         Eritrea  ERI 2013    0
12122      161                         Georgia  GEO 2013    0
12123      162                      Kazakhstan  KAZ 2013    0
12124      163                        Kiribati  KIR 2013    0
12125      164        Korea, North (Dem. Rep.)  PRK 2013    0
12126      165                      Kyrgyzstan  KGZ 2013    0
12127      166                          Latvia  LVA 2013    0
12128      167                         Lebanon  LBN 2013    0
12129      168                       Lithuania  LTU 2013    0
12130      169                       Macedonia  MKD 2013    0
12131      170                 Maldive Islands  MDV 2013    0
12132      171                         Moldova  MDA 2013    0
12133      172                         Namibia  NAM 2013    0
12134      174                       St. Lucia  LCA 2013    0
12135      175           Sao Tome and Principe  STP 2013    0
12136      176                        Slovenia  SVN 2013    0
12137      177                      Somaliland    . 2013    0
12138      178               Yemen PDR (South)    . 2013    0
12139      179             St. Kitts and Nevis  KNA 2013    0
12140      180                     St. Vincent  VCT 2013    0
12141      181                      Tajikistan  TJK 2013    0
12142      182                    Turkmenistan  TKM 2013    0
12143      183                         Ukraine  UKR 2013    0
12144      184                           Tonga  TON 2013    0
12145      185                      Uzbekistan  UZB 2013    0
12146      186                         Vietnam  VNM 2013    0
12147      187                          Cyprus  CYP 2013    0
12148      188                    Greek Cyprus    . 2013    0
12149      189 Micronesia, Federated States of  FSM 2013    0
12150      190               Republic of Yemen  YEM 2013    0
12151      191                         Germany  DEU 2013    0
12152      192                     Yugoslavia2  YUG 2013    0
12153      193                           Libya  LBY 2013    0
12154      194                       Ethiopia2  ETH 2013    0
12155      195                         Andorra  ADO 2013    0
12156      196                   Liechtenstein  LIE 2013    0
12157      197                Marshall Islands  MHL 2013    0
12158      198                           Palau  PLW 2013    0
12159      199                      San Marino  SMR 2013    0
12160        1                         Algeria  DZA 2014    0
12161        2                          Angola  AGO 2014    0
12162        3                           Benin  BEN 2014    0
12163        4                        Botswana  BWA 2014    0
12164        5                    Burkina Faso  BFA 2014    0
12165        6                         Burundi  BDI 2014    0
12166        7                        Cameroon  CMR 2014    0
12167        8                      Cape Verde  CPV 2014    0
12168        9        Central African Republic  CAF 2014    0
12169       10                            Chad  TCD 2014    1
12170       11                         Comoros  COM 2014    0
12171       12                           Congo  COG 2014    0
12172       13                        Djibouti  DJI 2014    0
12173       14                Egypt, Arab Rep.  EGY 2014    0
12174       15                        Ethiopia    . 2014    0
12175       16                           Gabon  GAB 2014    0
12176       17                     Gambia, The  GMB 2014    0
12177       18                           Ghana  GHA 2014    0
12178       19                          Guinea  GIN 2014    0
12179       20                   Guinea-Bissau  GNB 2014    0
12180       21                   Cote d'Ivoire  CIV 2014    0
12181       22                           Kenya  KEN 2014    0
12182       23                         Lesotho  LSO 2014    0
12183       24                         Liberia  LBR 2014    0
12184       25                      Madagascar  MDG 2014    0
12185       26                          Malawi  MWI 2014    0
12186       27                            Mali  MLI 2014    0
12187       28                      Mauritania  MRT 2014    0
12188       29                       Mauritius  MUS 2014    0
12189       30                         Morocco  MAR 2014    0
12190       31                      Mozambique  MOZ 2014    0
12191       32                           Niger  NER 2014    0
12192       33                         Nigeria  NGA 2014    1
12193       34                          Rwanda  RWA 2014    1
12194       35                         Senegal  SEN 2014    0
12195       36                      Seychelles  SYC 2014    0
12196       37                    Sierra Leone  SLE 2014    0
12197       38                         Somalia  SOM 2014    0
12198       39                    South Africa  ZAF 2014    0
12199       40                           Sudan  SDN 2014    0
12200       41                       Swaziland  SWZ 2014    0
12201       42                        Tanzania  TZA 2014    0
12202       43                            Togo  TGO 2014    0
12203       44                         Tunisia  TUN 2014    0
12204       45                          Uganda  UGA 2014    0
12205       46                           Zaire  ZAR 2014    0
12206       47                          Zambia  ZMB 2014    0
12207       48                        Zimbabwe  ZWE 2014    0
12208       49                    Bahamas, The  BHS 2014    0
12209       50                        Barbados  BRB 2014    0
12210       51                          Belize  BLZ 2014    0
12211       52                          Canada  CAN 2014    0
12212       53                      Costa Rica  CRI 2014    0
12213       54              Dominican Republic  DOM 2014    0
12214       55                     El Salvador  SLV 2014    0
12215       56                         Grenada  GRD 2014    0
12216       57                       Guatemala  GTM 2014    0
12217       58                           Haiti  HTI 2014    0
12218       59                        Honduras  HND 2014    0
12219       60                         Jamaica  JAM 2014    0
12220       61                          Mexico  MEX 2014    0
12221       62                       Nicaragua  NIC 2014    0
12222       63                          Panama  PAN 2014    0
12223       64             Trinidad and Tobago  TTO 2014    0
12224       66                       Argentina  ARG 2014    1
12225       67                         Bolivia  BOL 2014    0
12226       68                          Brazil  BRA 2014    0
12227       69                           Chile  CHL 2014    1
12228       70                        Colombia  COL 2014    0
12229       71                         Ecuador  ECU 2014    0
12230       72                          Guyana  GUY 2014    0
12231       73                        Paraguay  PRY 2014    0
12232       74                            Peru  PER 2014    0
12233       75                        Suriname  SUR 2014    0
12234       76                         Uruguay  URY 2014    0
12235       77                       Venezuela  VEN 2014    0
12236       78                      Bangladesh  BGD 2014    0
12237       80                           India  IND 2014    0
12238       81                       Indonesia  IDN 2014    0
12239       82              Iran, Islamic Rep.  IRN 2014    0
12240       83                            Iraq  IRQ 2014    0
12241       84                          Israel  ISR 2014    0
12242       85                           Japan  JPN 2014    0
12243       86                          Jordan  JOR 2014    1
12244       87             Korea, South (Rep.)  KOR 2014    1
12245       88                        Laos PDR  LAO 2014    0
12246       89                        Malaysia  MYS 2014    0
12247       90                        Mongolia  MNG 2014    0
12248       91                         Myanmar  MMR 2014    0
12249       92                           Nepal  NPL 2014    0
12250       93                        Pakistan  PAK 2014    0
12251       94                     Philippines  PHL 2014    0
12252       95                       Singapore  SGP 2014    0
12253       96                       Sri Lanka  LKA 2014    0
12254       97            Syrian Arab Republic  SYR 2014    0
12255       98                          Taiwan    . 2014    0
12256       99                        Thailand  THA 2014    0
12257      100             Yemen Arab Republic    . 2014    0
12258      101                         Austria  AUT 2014    0
12259      102                         Belgium  BEL 2014    0
12260      103                        Bulgaria  BGR 2014    0
12261      104                  Czechoslovakia    . 2014    0
12262      105                         Denmark  DNK 2014    0
12263      106                         Finland  FIN 2014    0
12264      108                   Germany, West    . 2014    0
12265      109                   Germany, East    . 2014    0
12266      110                          Greece  GRC 2014    0
12267      111                         Hungary  HUN 2014    0
12268      112                         Iceland  ISL 2014    0
12269      113                         Ireland  IRL 2014    0
12270      114                           Italy  ITA 2014    0
12271      115                      Luxembourg  LUX 2014    1
12272      116                           Malta  MLT 2014    0
12273      117                     Netherlands  NLD 2014    0
12274      118                          Norway  NOR 2014    0
12275      119                          Poland  POL 2014    0
12276      120                        Portugal  PRT 2014    0
12277      121                         Romania  ROM 2014    0
12278      122                           Spain  ESP 2014    0
12279      123                          Sweden  SWE 2014    0
12280      124                     Switzerland  CHE 2014    0
12281      125                          Turkey  TUR 2014    0
12282      128                      Yugoslavia    . 2014    0
12283      129                       Australia  AUS 2014    1
12284      130                            Fiji  FJI 2014    0
12285      131                     New Zealand  NZL 2014    0
12286      132                Papua New Guinea  PNG 2014    0
12287      133                 Solomon Islands  SLB 2014    0
12288      134                         Vanuatu  VUT 2014    0
12289      135                   Western Samoa  WSM 2014    0
12290      136                         Bahrain  BHR 2014    0
12291      137                          Kuwait  KWT 2014    0
12292      138                            Oman  OMN 2014    0
12293      139                           Qatar  QAT 2014    0
12294      140                    Saudi Arabia  SAU 2014    0
12295      141            United Arab Emirates  ARE 2014    0
12296      142                     Afghanistan  AFG 2014    0
12297      143                         Albania  ALB 2014    0
12298      144                         Antigua  ATG 2014    0
12299      145                         Armenia  ARM 2014    0
12300      146                           Nauru    . 2014    0
12301      147                      Azerbaijan  AZE 2014    0
12302      148                          Bhutan  BTN 2014    0
12303      149                         Belarus  BLR 2014    0
12304      150              Bosnia-Herzegovina  BIH 2014    0
12305      151                          Brunei  BRN 2014    0
12306      152                        Cambodia  KHM 2014    0
12307      153                         Croatia  HRV 2014    0
12308      154                            Cuba  CUB 2014    0
12309      155                  Czech Republic  CZE 2014    0
12310      156                 Slovak Republic  SVK 2014    0
12311      157                        Dominica  DMA 2014    0
12312      158               Equatorial Guinea  GNQ 2014    0
12313      159                         Estonia  EST 2014    0
12314      160                         Eritrea  ERI 2014    0
12315      161                         Georgia  GEO 2014    0
12316      162                      Kazakhstan  KAZ 2014    0
12317      163                        Kiribati  KIR 2014    0
12318      164        Korea, North (Dem. Rep.)  PRK 2014    0
12319      165                      Kyrgyzstan  KGZ 2014    0
12320      166                          Latvia  LVA 2014    0
12321      167                         Lebanon  LBN 2014    0
12322      168                       Lithuania  LTU 2014    1
12323      169                       Macedonia  MKD 2014    0
12324      170                 Maldive Islands  MDV 2014    0
12325      171                         Moldova  MDA 2014    0
12326      172                         Namibia  NAM 2014    0
12327      174                       St. Lucia  LCA 2014    0
12328      175           Sao Tome and Principe  STP 2014    0
12329      176                        Slovenia  SVN 2014    0
12330      177                      Somaliland    . 2014    0
12331      178               Yemen PDR (South)    . 2014    0
12332      179             St. Kitts and Nevis  KNA 2014    0
12333      180                     St. Vincent  VCT 2014    0
12334      181                      Tajikistan  TJK 2014    0
12335      182                    Turkmenistan  TKM 2014    0
12336      183                         Ukraine  UKR 2014    0
12337      184                           Tonga  TON 2014    0
12338      185                      Uzbekistan  UZB 2014    0
12339      186                         Vietnam  VNM 2014    0
12340      187                          Cyprus  CYP 2014    0
12341      188                    Greek Cyprus    . 2014    0
12342      189 Micronesia, Federated States of  FSM 2014    0
12343      190               Republic of Yemen  YEM 2014    0
12344      191                         Germany  DEU 2014    0
12345      192                     Yugoslavia2  YUG 2014    0
12346      193                           Libya  LBY 2014    0
12347      194                       Ethiopia2  ETH 2014    0
12348      195                         Andorra  ADO 2014    0
12349      196                   Liechtenstein  LIE 2014    0
12350      197                Marshall Islands  MHL 2014    0
12351      198                           Palau  PLW 2014    0
12352      199                      San Marino  SMR 2014    0
12353        1                         Algeria  DZA 2015    0
12354        2                          Angola  AGO 2015    1
12355        3                           Benin  BEN 2015    0
12356        4                        Botswana  BWA 2015    0
12357        5                    Burkina Faso  BFA 2015    0
12358        6                         Burundi  BDI 2015    0
12359        7                        Cameroon  CMR 2015    0
12360        8                      Cape Verde  CPV 2015    0
12361        9        Central African Republic  CAF 2015    0
12362       10                            Chad  TCD 2015    1
12363       11                         Comoros  COM 2015    0
12364       12                           Congo  COG 2015    0
12365       13                        Djibouti  DJI 2015    0
12366       14                Egypt, Arab Rep.  EGY 2015    0
12367       15                        Ethiopia    . 2015    0
12368       16                           Gabon  GAB 2015    0
12369       17                     Gambia, The  GMB 2015    0
12370       18                           Ghana  GHA 2015    0
12371       19                          Guinea  GIN 2015    0
12372       20                   Guinea-Bissau  GNB 2015    0
12373       21                   Cote d'Ivoire  CIV 2015    0
12374       22                           Kenya  KEN 2015    0
12375       23                         Lesotho  LSO 2015    0
12376       24                         Liberia  LBR 2015    0
12377       25                      Madagascar  MDG 2015    0
12378       26                          Malawi  MWI 2015    0
12379       27                            Mali  MLI 2015    0
12380       28                      Mauritania  MRT 2015    0
12381       29                       Mauritius  MUS 2015    0
12382       30                         Morocco  MAR 2015    0
12383       31                      Mozambique  MOZ 2015    0
12384       32                           Niger  NER 2015    0
12385       33                         Nigeria  NGA 2015    1
12386       34                          Rwanda  RWA 2015    0
12387       35                         Senegal  SEN 2015    0
12388       36                      Seychelles  SYC 2015    0
12389       37                    Sierra Leone  SLE 2015    0
12390       38                         Somalia  SOM 2015    0
12391       39                    South Africa  ZAF 2015    0
12392       40                           Sudan  SDN 2015    0
12393       41                       Swaziland  SWZ 2015    0
12394       42                        Tanzania  TZA 2015    0
12395       43                            Togo  TGO 2015    0
12396       44                         Tunisia  TUN 2015    0
12397       45                          Uganda  UGA 2015    0
12398       46                           Zaire  ZAR 2015    0
12399       47                          Zambia  ZMB 2015    0
12400       48                        Zimbabwe  ZWE 2015    0
12401       49                    Bahamas, The  BHS 2015    0
12402       50                        Barbados  BRB 2015    0
12403       51                          Belize  BLZ 2015    0
12404       52                          Canada  CAN 2015    0
12405       53                      Costa Rica  CRI 2015    0
12406       54              Dominican Republic  DOM 2015    0
12407       55                     El Salvador  SLV 2015    0
12408       56                         Grenada  GRD 2015    0
12409       57                       Guatemala  GTM 2015    0
12410       58                           Haiti  HTI 2015    0
12411       59                        Honduras  HND 2015    0
12412       60                         Jamaica  JAM 2015    0
12413       61                          Mexico  MEX 2015    0
12414       62                       Nicaragua  NIC 2015    0
12415       63                          Panama  PAN 2015    0
12416       64             Trinidad and Tobago  TTO 2015    0
12417       66                       Argentina  ARG 2015    0
12418       67                         Bolivia  BOL 2015    0
12419       68                          Brazil  BRA 2015    0
12420       69                           Chile  CHL 2015    1
12421       70                        Colombia  COL 2015    0
12422       71                         Ecuador  ECU 2015    0
12423       72                          Guyana  GUY 2015    0
12424       73                        Paraguay  PRY 2015    0
12425       74                            Peru  PER 2015    0
12426       75                        Suriname  SUR 2015    0
12427       76                         Uruguay  URY 2015    0
12428       77                       Venezuela  VEN 2015    1
12429       78                      Bangladesh  BGD 2015    0
12430       80                           India  IND 2015    0
12431       81                       Indonesia  IDN 2015    0
12432       82              Iran, Islamic Rep.  IRN 2015    0
12433       83                            Iraq  IRQ 2015    0
12434       84                          Israel  ISR 2015    0
12435       85                           Japan  JPN 2015    0
12436       86                          Jordan  JOR 2015    1
12437       87             Korea, South (Rep.)  KOR 2015    0
12438       88                        Laos PDR  LAO 2015    0
12439       89                        Malaysia  MYS 2015    1
12440       90                        Mongolia  MNG 2015    0
12441       91                         Myanmar  MMR 2015    0
12442       92                           Nepal  NPL 2015    0
12443       93                        Pakistan  PAK 2015    0
12444       94                     Philippines  PHL 2015    0
12445       95                       Singapore  SGP 2015    0
12446       96                       Sri Lanka  LKA 2015    0
12447       97            Syrian Arab Republic  SYR 2015    0
12448       98                          Taiwan    . 2015    0
12449       99                        Thailand  THA 2015    0
12450      100             Yemen Arab Republic    . 2015    0
12451      101                         Austria  AUT 2015    0
12452      102                         Belgium  BEL 2015    0
12453      103                        Bulgaria  BGR 2015    0
12454      104                  Czechoslovakia    . 2015    0
12455      105                         Denmark  DNK 2015    0
12456      106                         Finland  FIN 2015    0
12457      108                   Germany, West    . 2015    0
12458      109                   Germany, East    . 2015    0
12459      110                          Greece  GRC 2015    0
12460      111                         Hungary  HUN 2015    0
12461      112                         Iceland  ISL 2015    0
12462      113                         Ireland  IRL 2015    0
12463      114                           Italy  ITA 2015    0
12464      115                      Luxembourg  LUX 2015    0
12465      116                           Malta  MLT 2015    0
12466      117                     Netherlands  NLD 2015    0
12467      118                          Norway  NOR 2015    0
12468      119                          Poland  POL 2015    0
12469      120                        Portugal  PRT 2015    0
12470      121                         Romania  ROM 2015    0
12471      122                           Spain  ESP 2015    1
12472      123                          Sweden  SWE 2015    0
12473      124                     Switzerland  CHE 2015    0
12474      125                          Turkey  TUR 2015    0
12475      128                      Yugoslavia    . 2015    0
12476      129                       Australia  AUS 2015    0
12477      130                            Fiji  FJI 2015    0
12478      131                     New Zealand  NZL 2015    1
12479      132                Papua New Guinea  PNG 2015    0
12480      133                 Solomon Islands  SLB 2015    0
12481      134                         Vanuatu  VUT 2015    0
12482      135                   Western Samoa  WSM 2015    0
12483      136                         Bahrain  BHR 2015    0
12484      137                          Kuwait  KWT 2015    0
12485      138                            Oman  OMN 2015    0
12486      139                           Qatar  QAT 2015    0
12487      140                    Saudi Arabia  SAU 2015    0
12488      141            United Arab Emirates  ARE 2015    0
12489      142                     Afghanistan  AFG 2015    0
12490      143                         Albania  ALB 2015    0
12491      144                         Antigua  ATG 2015    0
12492      145                         Armenia  ARM 2015    0
12493      146                           Nauru    . 2015    0
12494      147                      Azerbaijan  AZE 2015    0
12495      148                          Bhutan  BTN 2015    0
12496      149                         Belarus  BLR 2015    0
12497      150              Bosnia-Herzegovina  BIH 2015    0
12498      151                          Brunei  BRN 2015    0
12499      152                        Cambodia  KHM 2015    0
12500      153                         Croatia  HRV 2015    0
12501      154                            Cuba  CUB 2015    0
12502      155                  Czech Republic  CZE 2015    0
12503      156                 Slovak Republic  SVK 2015    0
12504      157                        Dominica  DMA 2015    0
12505      158               Equatorial Guinea  GNQ 2015    0
12506      159                         Estonia  EST 2015    0
12507      160                         Eritrea  ERI 2015    0
12508      161                         Georgia  GEO 2015    0
12509      162                      Kazakhstan  KAZ 2015    0
12510      163                        Kiribati  KIR 2015    0
12511      164        Korea, North (Dem. Rep.)  PRK 2015    0
12512      165                      Kyrgyzstan  KGZ 2015    0
12513      166                          Latvia  LVA 2015    0
12514      167                         Lebanon  LBN 2015    0
12515      168                       Lithuania  LTU 2015    1
12516      169                       Macedonia  MKD 2015    0
12517      170                 Maldive Islands  MDV 2015    0
12518      171                         Moldova  MDA 2015    0
12519      172                         Namibia  NAM 2015    0
12520      174                       St. Lucia  LCA 2015    0
12521      175           Sao Tome and Principe  STP 2015    0
12522      176                        Slovenia  SVN 2015    0
12523      177                      Somaliland    . 2015    0
12524      178               Yemen PDR (South)    . 2015    0
12525      179             St. Kitts and Nevis  KNA 2015    0
12526      180                     St. Vincent  VCT 2015    0
12527      181                      Tajikistan  TJK 2015    0
12528      182                    Turkmenistan  TKM 2015    0
12529      183                         Ukraine  UKR 2015    0
12530      184                           Tonga  TON 2015    0
12531      185                      Uzbekistan  UZB 2015    0
12532      186                         Vietnam  VNM 2015    0
12533      187                          Cyprus  CYP 2015    0
12534      188                    Greek Cyprus    . 2015    0
12535      189 Micronesia, Federated States of  FSM 2015    0
12536      190               Republic of Yemen  YEM 2015    0
12537      191                         Germany  DEU 2015    0
12538      192                     Yugoslavia2  YUG 2015    0
12539      193                           Libya  LBY 2015    0
12540      194                       Ethiopia2  ETH 2015    0
12541      195                         Andorra  ADO 2015    0
12542      196                   Liechtenstein  LIE 2015    0
12543      197                Marshall Islands  MHL 2015    0
12544      198                           Palau  PLW 2015    0
12545      199                      San Marino  SMR 2015    0
12546        1                         Algeria  DZA 2016    0
12547        2                          Angola  AGO 2016    1
12548        3                           Benin  BEN 2016    0
12549        4                        Botswana  BWA 2016    0
12550        5                    Burkina Faso  BFA 2016    0
12551        6                         Burundi  BDI 2016    0
12552        7                        Cameroon  CMR 2016    0
12553        8                      Cape Verde  CPV 2016    0
12554        9        Central African Republic  CAF 2016    0
12555       10                            Chad  TCD 2016    0
12556       11                         Comoros  COM 2016    0
12557       12                           Congo  COG 2016    0
12558       13                        Djibouti  DJI 2016    0
12559       14                Egypt, Arab Rep.  EGY 2016    1
12560       15                        Ethiopia    . 2016    0
12561       16                           Gabon  GAB 2016    0
12562       17                     Gambia, The  GMB 2016    0
12563       18                           Ghana  GHA 2016    0
12564       19                          Guinea  GIN 2016    0
12565       20                   Guinea-Bissau  GNB 2016    0
12566       21                   Cote d'Ivoire  CIV 2016    0
12567       22                           Kenya  KEN 2016    0
12568       23                         Lesotho  LSO 2016    0
12569       24                         Liberia  LBR 2016    0
12570       25                      Madagascar  MDG 2016    0
12571       26                          Malawi  MWI 2016    0
12572       27                            Mali  MLI 2016    0
12573       28                      Mauritania  MRT 2016    0
12574       29                       Mauritius  MUS 2016    0
12575       30                         Morocco  MAR 2016    0
12576       31                      Mozambique  MOZ 2016    0
12577       32                           Niger  NER 2016    0
12578       33                         Nigeria  NGA 2016    0
12579       34                          Rwanda  RWA 2016    0
12580       35                         Senegal  SEN 2016    1
12581       36                      Seychelles  SYC 2016    0
12582       37                    Sierra Leone  SLE 2016    0
12583       38                         Somalia  SOM 2016    0
12584       39                    South Africa  ZAF 2016    0
12585       40                           Sudan  SDN 2016    0
12586       41                       Swaziland  SWZ 2016    0
12587       42                        Tanzania  TZA 2016    0
12588       43                            Togo  TGO 2016    0
12589       44                         Tunisia  TUN 2016    0
12590       45                          Uganda  UGA 2016    0
12591       46                           Zaire  ZAR 2016    0
12592       47                          Zambia  ZMB 2016    0
12593       48                        Zimbabwe  ZWE 2016    0
12594       49                    Bahamas, The  BHS 2016    0
12595       50                        Barbados  BRB 2016    0
12596       51                          Belize  BLZ 2016    0
12597       52                          Canada  CAN 2016    0
12598       53                      Costa Rica  CRI 2016    0
12599       54              Dominican Republic  DOM 2016    0
12600       55                     El Salvador  SLV 2016    0
12601       56                         Grenada  GRD 2016    0
12602       57                       Guatemala  GTM 2016    0
12603       58                           Haiti  HTI 2016    0
12604       59                        Honduras  HND 2016    0
12605       60                         Jamaica  JAM 2016    0
12606       61                          Mexico  MEX 2016    0
12607       62                       Nicaragua  NIC 2016    0
12608       63                          Panama  PAN 2016    0
12609       64             Trinidad and Tobago  TTO 2016    0
12610       66                       Argentina  ARG 2016    0
12611       67                         Bolivia  BOL 2016    0
12612       68                          Brazil  BRA 2016    0
12613       69                           Chile  CHL 2016    0
12614       70                        Colombia  COL 2016    0
12615       71                         Ecuador  ECU 2016    0
12616       72                          Guyana  GUY 2016    0
12617       73                        Paraguay  PRY 2016    0
12618       74                            Peru  PER 2016    0
12619       75                        Suriname  SUR 2016    0
12620       76                         Uruguay  URY 2016    1
12621       77                       Venezuela  VEN 2016    1
12622       78                      Bangladesh  BGD 2016    0
12623       80                           India  IND 2016    0
12624       81                       Indonesia  IDN 2016    0
12625       82              Iran, Islamic Rep.  IRN 2016    0
12626       83                            Iraq  IRQ 2016    0
12627       84                          Israel  ISR 2016    0
12628       85                           Japan  JPN 2016    1
12629       86                          Jordan  JOR 2016    0
12630       87             Korea, South (Rep.)  KOR 2016    0
12631       88                        Laos PDR  LAO 2016    0
12632       89                        Malaysia  MYS 2016    1
12633       90                        Mongolia  MNG 2016    0
12634       91                         Myanmar  MMR 2016    0
12635       92                           Nepal  NPL 2016    0
12636       93                        Pakistan  PAK 2016    0
12637       94                     Philippines  PHL 2016    0
12638       95                       Singapore  SGP 2016    0
12639       96                       Sri Lanka  LKA 2016    0
12640       97            Syrian Arab Republic  SYR 2016    0
12641       98                          Taiwan    . 2016    0
12642       99                        Thailand  THA 2016    0
12643      100             Yemen Arab Republic    . 2016    0
12644      101                         Austria  AUT 2016    0
12645      102                         Belgium  BEL 2016    0
12646      103                        Bulgaria  BGR 2016    0
12647      104                  Czechoslovakia    . 2016    0
12648      105                         Denmark  DNK 2016    0
12649      106                         Finland  FIN 2016    0
12650      108                   Germany, West    . 2016    0
12651      109                   Germany, East    . 2016    0
12652      110                          Greece  GRC 2016    0
12653      111                         Hungary  HUN 2016    0
12654      112                         Iceland  ISL 2016    0
12655      113                         Ireland  IRL 2016    0
12656      114                           Italy  ITA 2016    0
12657      115                      Luxembourg  LUX 2016    0
12658      116                           Malta  MLT 2016    0
12659      117                     Netherlands  NLD 2016    0
12660      118                          Norway  NOR 2016    0
12661      119                          Poland  POL 2016    0
12662      120                        Portugal  PRT 2016    0
12663      121                         Romania  ROM 2016    0
12664      122                           Spain  ESP 2016    1
12665      123                          Sweden  SWE 2016    0
12666      124                     Switzerland  CHE 2016    0
12667      125                          Turkey  TUR 2016    0
12668      128                      Yugoslavia    . 2016    0
12669      129                       Australia  AUS 2016    0
12670      130                            Fiji  FJI 2016    0
12671      131                     New Zealand  NZL 2016    1
12672      132                Papua New Guinea  PNG 2016    0
12673      133                 Solomon Islands  SLB 2016    0
12674      134                         Vanuatu  VUT 2016    0
12675      135                   Western Samoa  WSM 2016    0
12676      136                         Bahrain  BHR 2016    0
12677      137                          Kuwait  KWT 2016    0
12678      138                            Oman  OMN 2016    0
12679      139                           Qatar  QAT 2016    0
12680      140                    Saudi Arabia  SAU 2016    0
12681      141            United Arab Emirates  ARE 2016    0
12682      142                     Afghanistan  AFG 2016    0
12683      143                         Albania  ALB 2016    0
12684      144                         Antigua  ATG 2016    0
12685      145                         Armenia  ARM 2016    0
12686      146                           Nauru    . 2016    0
12687      147                      Azerbaijan  AZE 2016    0
12688      148                          Bhutan  BTN 2016    0
12689      149                         Belarus  BLR 2016    0
12690      150              Bosnia-Herzegovina  BIH 2016    0
12691      151                          Brunei  BRN 2016    0
12692      152                        Cambodia  KHM 2016    0
12693      153                         Croatia  HRV 2016    0
12694      154                            Cuba  CUB 2016    0
12695      155                  Czech Republic  CZE 2016    0
12696      156                 Slovak Republic  SVK 2016    0
12697      157                        Dominica  DMA 2016    0
12698      158               Equatorial Guinea  GNQ 2016    0
12699      159                         Estonia  EST 2016    0
12700      160                         Eritrea  ERI 2016    0
12701      161                         Georgia  GEO 2016    0
12702      162                      Kazakhstan  KAZ 2016    0
12703      163                        Kiribati  KIR 2016    0
12704      164        Korea, North (Dem. Rep.)  PRK 2016    0
12705      165                      Kyrgyzstan  KGZ 2016    0
12706      166                          Latvia  LVA 2016    0
12707      167                         Lebanon  LBN 2016    0
12708      168                       Lithuania  LTU 2016    0
12709      169                       Macedonia  MKD 2016    0
12710      170                 Maldive Islands  MDV 2016    0
12711      171                         Moldova  MDA 2016    0
12712      172                         Namibia  NAM 2016    0
12713      174                       St. Lucia  LCA 2016    0
12714      175           Sao Tome and Principe  STP 2016    0
12715      176                        Slovenia  SVN 2016    0
12716      177                      Somaliland    . 2016    0
12717      178               Yemen PDR (South)    . 2016    0
12718      179             St. Kitts and Nevis  KNA 2016    0
12719      180                     St. Vincent  VCT 2016    0
12720      181                      Tajikistan  TJK 2016    0
12721      182                    Turkmenistan  TKM 2016    0
12722      183                         Ukraine  UKR 2016    1
12723      184                           Tonga  TON 2016    0
12724      185                      Uzbekistan  UZB 2016    0
12725      186                         Vietnam  VNM 2016    0
12726      187                          Cyprus  CYP 2016    0
12727      188                    Greek Cyprus    . 2016    0
12728      189 Micronesia, Federated States of  FSM 2016    0
12729      190               Republic of Yemen  YEM 2016    0
12730      191                         Germany  DEU 2016    0
12731      192                     Yugoslavia2  YUG 2016    0
12732      193                           Libya  LBY 2016    0
12733      194                       Ethiopia2  ETH 2016    0
12734      195                         Andorra  ADO 2016    0
12735      196                   Liechtenstein  LIE 2016    0
12736      197                Marshall Islands  MHL 2016    0
12737      198                           Palau  PLW 2016    0
12738      199                      San Marino  SMR 2016    0
12739        1                         Algeria  DZA 2017    0
12740        2                          Angola  AGO 2017    0
12741        3                           Benin  BEN 2017    0
12742        4                        Botswana  BWA 2017    0
12743        5                    Burkina Faso  BFA 2017    0
12744        6                         Burundi  BDI 2017    0
12745        7                        Cameroon  CMR 2017    0
12746        8                      Cape Verde  CPV 2017    0
12747        9        Central African Republic  CAF 2017    0
12748       10                            Chad  TCD 2017    0
12749       11                         Comoros  COM 2017    0
12750       12                           Congo  COG 2017    0
12751       13                        Djibouti  DJI 2017    0
12752       14                Egypt, Arab Rep.  EGY 2017    1
12753       15                        Ethiopia    . 2017    0
12754       16                           Gabon  GAB 2017    0
12755       17                     Gambia, The  GMB 2017    0
12756       18                           Ghana  GHA 2017    0
12757       19                          Guinea  GIN 2017    0
12758       20                   Guinea-Bissau  GNB 2017    0
12759       21                   Cote d'Ivoire  CIV 2017    0
12760       22                           Kenya  KEN 2017    0
12761       23                         Lesotho  LSO 2017    0
12762       24                         Liberia  LBR 2017    0
12763       25                      Madagascar  MDG 2017    0
12764       26                          Malawi  MWI 2017    0
12765       27                            Mali  MLI 2017    0
12766       28                      Mauritania  MRT 2017    0
12767       29                       Mauritius  MUS 2017    0
12768       30                         Morocco  MAR 2017    0
12769       31                      Mozambique  MOZ 2017    0
12770       32                           Niger  NER 2017    0
12771       33                         Nigeria  NGA 2017    0
12772       34                          Rwanda  RWA 2017    0
12773       35                         Senegal  SEN 2017    1
12774       36                      Seychelles  SYC 2017    0
12775       37                    Sierra Leone  SLE 2017    0
12776       38                         Somalia  SOM 2017    0
12777       39                    South Africa  ZAF 2017    0
12778       40                           Sudan  SDN 2017    0
12779       41                       Swaziland  SWZ 2017    0
12780       42                        Tanzania  TZA 2017    0
12781       43                            Togo  TGO 2017    0
12782       44                         Tunisia  TUN 2017    0
12783       45                          Uganda  UGA 2017    0
12784       46                           Zaire  ZAR 2017    0
12785       47                          Zambia  ZMB 2017    0
12786       48                        Zimbabwe  ZWE 2017    0
12787       49                    Bahamas, The  BHS 2017    0
12788       50                        Barbados  BRB 2017    0
12789       51                          Belize  BLZ 2017    0
12790       52                          Canada  CAN 2017    0
12791       53                      Costa Rica  CRI 2017    0
12792       54              Dominican Republic  DOM 2017    0
12793       55                     El Salvador  SLV 2017    0
12794       56                         Grenada  GRD 2017    0
12795       57                       Guatemala  GTM 2017    0
12796       58                           Haiti  HTI 2017    0
12797       59                        Honduras  HND 2017    0
12798       60                         Jamaica  JAM 2017    0
12799       61                          Mexico  MEX 2017    0
12800       62                       Nicaragua  NIC 2017    0
12801       63                          Panama  PAN 2017    0
12802       64             Trinidad and Tobago  TTO 2017    0
12803       66                       Argentina  ARG 2017    0
12804       67                         Bolivia  BOL 2017    1
12805       68                          Brazil  BRA 2017    0
12806       69                           Chile  CHL 2017    0
12807       70                        Colombia  COL 2017    0
12808       71                         Ecuador  ECU 2017    0
12809       72                          Guyana  GUY 2017    0
12810       73                        Paraguay  PRY 2017    0
12811       74                            Peru  PER 2017    0
12812       75                        Suriname  SUR 2017    0
12813       76                         Uruguay  URY 2017    1
12814       77                       Venezuela  VEN 2017    0
12815       78                      Bangladesh  BGD 2017    0
12816       80                           India  IND 2017    0
12817       81                       Indonesia  IDN 2017    0
12818       82              Iran, Islamic Rep.  IRN 2017    0
12819       83                            Iraq  IRQ 2017    0
12820       84                          Israel  ISR 2017    0
12821       85                           Japan  JPN 2017    1
12822       86                          Jordan  JOR 2017    0
12823       87             Korea, South (Rep.)  KOR 2017    0
12824       88                        Laos PDR  LAO 2017    0
12825       89                        Malaysia  MYS 2017    0
12826       90                        Mongolia  MNG 2017    0
12827       91                         Myanmar  MMR 2017    0
12828       92                           Nepal  NPL 2017    0
12829       93                        Pakistan  PAK 2017    0
12830       94                     Philippines  PHL 2017    0
12831       95                       Singapore  SGP 2017    0
12832       96                       Sri Lanka  LKA 2017    0
12833       97            Syrian Arab Republic  SYR 2017    0
12834       98                          Taiwan    . 2017    0
12835       99                        Thailand  THA 2017    0
12836      100             Yemen Arab Republic    . 2017    0
12837      101                         Austria  AUT 2017    0
12838      102                         Belgium  BEL 2017    0
12839      103                        Bulgaria  BGR 2017    0
12840      104                  Czechoslovakia    . 2017    0
12841      105                         Denmark  DNK 2017    0
12842      106                         Finland  FIN 2017    0
12843      108                   Germany, West    . 2017    0
12844      109                   Germany, East    . 2017    0
12845      110                          Greece  GRC 2017    0
12846      111                         Hungary  HUN 2017    0
12847      112                         Iceland  ISL 2017    0
12848      113                         Ireland  IRL 2017    0
12849      114                           Italy  ITA 2017    1
12850      115                      Luxembourg  LUX 2017    0
12851      116                           Malta  MLT 2017    0
12852      117                     Netherlands  NLD 2017    0
12853      118                          Norway  NOR 2017    0
12854      119                          Poland  POL 2017    0
12855      120                        Portugal  PRT 2017    0
12856      121                         Romania  ROM 2017    0
12857      122                           Spain  ESP 2017    0
12858      123                          Sweden  SWE 2017    1
12859      124                     Switzerland  CHE 2017    0
12860      125                          Turkey  TUR 2017    0
12861      128                      Yugoslavia    . 2017    0
12862      129                       Australia  AUS 2017    0
12863      130                            Fiji  FJI 2017    0
12864      131                     New Zealand  NZL 2017    0
12865      132                Papua New Guinea  PNG 2017    0
12866      133                 Solomon Islands  SLB 2017    0
12867      134                         Vanuatu  VUT 2017    0
12868      135                   Western Samoa  WSM 2017    0
12869      136                         Bahrain  BHR 2017    0
12870      137                          Kuwait  KWT 2017    0
12871      138                            Oman  OMN 2017    0
12872      139                           Qatar  QAT 2017    0
12873      140                    Saudi Arabia  SAU 2017    0
12874      141            United Arab Emirates  ARE 2017    0
12875      142                     Afghanistan  AFG 2017    0
12876      143                         Albania  ALB 2017    0
12877      144                         Antigua  ATG 2017    0
12878      145                         Armenia  ARM 2017    0
12879      146                           Nauru    . 2017    0
12880      147                      Azerbaijan  AZE 2017    0
12881      148                          Bhutan  BTN 2017    0
12882      149                         Belarus  BLR 2017    0
12883      150              Bosnia-Herzegovina  BIH 2017    0
12884      151                          Brunei  BRN 2017    0
12885      152                        Cambodia  KHM 2017    0
12886      153                         Croatia  HRV 2017    0
12887      154                            Cuba  CUB 2017    0
12888      155                  Czech Republic  CZE 2017    0
12889      156                 Slovak Republic  SVK 2017    0
12890      157                        Dominica  DMA 2017    0
12891      158               Equatorial Guinea  GNQ 2017    0
12892      159                         Estonia  EST 2017    0
12893      160                         Eritrea  ERI 2017    0
12894      161                         Georgia  GEO 2017    0
12895      162                      Kazakhstan  KAZ 2017    1
12896      163                        Kiribati  KIR 2017    0
12897      164        Korea, North (Dem. Rep.)  PRK 2017    0
12898      165                      Kyrgyzstan  KGZ 2017    0
12899      166                          Latvia  LVA 2017    0
12900      167                         Lebanon  LBN 2017    0
12901      168                       Lithuania  LTU 2017    0
12902      169                       Macedonia  MKD 2017    0
12903      170                 Maldive Islands  MDV 2017    0
12904      171                         Moldova  MDA 2017    0
12905      172                         Namibia  NAM 2017    0
12906      174                       St. Lucia  LCA 2017    0
12907      175           Sao Tome and Principe  STP 2017    0
12908      176                        Slovenia  SVN 2017    0
12909      177                      Somaliland    . 2017    0
12910      178               Yemen PDR (South)    . 2017    0
12911      179             St. Kitts and Nevis  KNA 2017    0
12912      180                     St. Vincent  VCT 2017    0
12913      181                      Tajikistan  TJK 2017    0
12914      182                    Turkmenistan  TKM 2017    0
12915      183                         Ukraine  UKR 2017    1
12916      184                           Tonga  TON 2017    0
12917      185                      Uzbekistan  UZB 2017    0
12918      186                         Vietnam  VNM 2017    0
12919      187                          Cyprus  CYP 2017    0
12920      188                    Greek Cyprus    . 2017    0
12921      189 Micronesia, Federated States of  FSM 2017    0
12922      190               Republic of Yemen  YEM 2017    0
12923      191                         Germany  DEU 2017    0
12924      192                     Yugoslavia2  YUG 2017    0
12925      193                           Libya  LBY 2017    0
12926      194                       Ethiopia2  ETH 2017    1
12927      195                         Andorra  ADO 2017    0
12928      196                   Liechtenstein  LIE 2017    0
12929      197                Marshall Islands  MHL 2017    0
12930      198                           Palau  PLW 2017    0
12931      199                      San Marino  SMR 2017    0
12932        1                         Algeria  DZA 2018    0
12933        2                          Angola  AGO 2018    0
12934        3                           Benin  BEN 2018    0
12935        4                        Botswana  BWA 2018    0
12936        5                    Burkina Faso  BFA 2018    0
12937        6                         Burundi  BDI 2018    0
12938        7                        Cameroon  CMR 2018    0
12939        8                      Cape Verde  CPV 2018    0
12940        9        Central African Republic  CAF 2018    0
12941       10                            Chad  TCD 2018    0
12942       11                         Comoros  COM 2018    0
12943       12                           Congo  COG 2018    0
12944       13                        Djibouti  DJI 2018    0
12945       14                Egypt, Arab Rep.  EGY 2018    0
12946       15                        Ethiopia    . 2018    0
12947       16                           Gabon  GAB 2018    0
12948       17                     Gambia, The  GMB 2018    0
12949       18                           Ghana  GHA 2018    0
12950       19                          Guinea  GIN 2018    0
12951       20                   Guinea-Bissau  GNB 2018    0
12952       21                   Cote d'Ivoire  CIV 2018    1
12953       22                           Kenya  KEN 2018    0
12954       23                         Lesotho  LSO 2018    0
12955       24                         Liberia  LBR 2018    0
12956       25                      Madagascar  MDG 2018    0
12957       26                          Malawi  MWI 2018    0
12958       27                            Mali  MLI 2018    0
12959       28                      Mauritania  MRT 2018    0
12960       29                       Mauritius  MUS 2018    0
12961       30                         Morocco  MAR 2018    0
12962       31                      Mozambique  MOZ 2018    0
12963       32                           Niger  NER 2018    0
12964       33                         Nigeria  NGA 2018    0
12965       34                          Rwanda  RWA 2018    0
12966       35                         Senegal  SEN 2018    0
12967       36                      Seychelles  SYC 2018    0
12968       37                    Sierra Leone  SLE 2018    0
12969       38                         Somalia  SOM 2018    0
12970       39                    South Africa  ZAF 2018    0
12971       40                           Sudan  SDN 2018    0
12972       41                       Swaziland  SWZ 2018    0
12973       42                        Tanzania  TZA 2018    0
12974       43                            Togo  TGO 2018    0
12975       44                         Tunisia  TUN 2018    0
12976       45                          Uganda  UGA 2018    0
12977       46                           Zaire  ZAR 2018    0
12978       47                          Zambia  ZMB 2018    0
12979       48                        Zimbabwe  ZWE 2018    0
12980       49                    Bahamas, The  BHS 2018    0
12981       50                        Barbados  BRB 2018    0
12982       51                          Belize  BLZ 2018    0
12983       52                          Canada  CAN 2018    0
12984       53                      Costa Rica  CRI 2018    0
12985       54              Dominican Republic  DOM 2018    0
12986       55                     El Salvador  SLV 2018    0
12987       56                         Grenada  GRD 2018    0
12988       57                       Guatemala  GTM 2018    0
12989       58                           Haiti  HTI 2018    0
12990       59                        Honduras  HND 2018    0
12991       60                         Jamaica  JAM 2018    0
12992       61                          Mexico  MEX 2018    0
12993       62                       Nicaragua  NIC 2018    0
12994       63                          Panama  PAN 2018    0
12995       64             Trinidad and Tobago  TTO 2018    0
12996       66                       Argentina  ARG 2018    0
12997       67                         Bolivia  BOL 2018    1
12998       68                          Brazil  BRA 2018    0
12999       69                           Chile  CHL 2018    0
13000       70                        Colombia  COL 2018    0
13001       71                         Ecuador  ECU 2018    0
13002       72                          Guyana  GUY 2018    0
13003       73                        Paraguay  PRY 2018    0
13004       74                            Peru  PER 2018    1
13005       75                        Suriname  SUR 2018    0
13006       76                         Uruguay  URY 2018    0
13007       77                       Venezuela  VEN 2018    0
13008       78                      Bangladesh  BGD 2018    0
13009       80                           India  IND 2018    0
13010       81                       Indonesia  IDN 2018    0
13011       82              Iran, Islamic Rep.  IRN 2018    0
13012       83                            Iraq  IRQ 2018    0
13013       84                          Israel  ISR 2018    0
13014       85                           Japan  JPN 2018    0
13015       86                          Jordan  JOR 2018    0
13016       87             Korea, South (Rep.)  KOR 2018    0
13017       88                        Laos PDR  LAO 2018    0
13018       89                        Malaysia  MYS 2018    0
13019       90                        Mongolia  MNG 2018    0
13020       91                         Myanmar  MMR 2018    0
13021       92                           Nepal  NPL 2018    0
13022       93                        Pakistan  PAK 2018    0
13023       94                     Philippines  PHL 2018    0
13024       95                       Singapore  SGP 2018    0
13025       96                       Sri Lanka  LKA 2018    0
13026       97            Syrian Arab Republic  SYR 2018    0
13027       98                          Taiwan    . 2018    0
13028       99                        Thailand  THA 2018    0
13029      100             Yemen Arab Republic    . 2018    0
13030      101                         Austria  AUT 2018    0
13031      102                         Belgium  BEL 2018    0
13032      103                        Bulgaria  BGR 2018    0
13033      104                  Czechoslovakia    . 2018    0
13034      105                         Denmark  DNK 2018    0
13035      106                         Finland  FIN 2018    0
13036      108                   Germany, West    . 2018    0
13037      109                   Germany, East    . 2018    0
13038      110                          Greece  GRC 2018    0
13039      111                         Hungary  HUN 2018    0
13040      112                         Iceland  ISL 2018    0
13041      113                         Ireland  IRL 2018    0
13042      114                           Italy  ITA 2018    0
13043      115                      Luxembourg  LUX 2018    0
13044      116                           Malta  MLT 2018    0
13045      117                     Netherlands  NLD 2018    1
13046      118                          Norway  NOR 2018    0
13047      119                          Poland  POL 2018    1
13048      120                        Portugal  PRT 2018    0
13049      121                         Romania  ROM 2018    0
13050      122                           Spain  ESP 2018    0
13051      123                          Sweden  SWE 2018    1
13052      124                     Switzerland  CHE 2018    0
13053      125                          Turkey  TUR 2018    0
13054      128                      Yugoslavia    . 2018    0
13055      129                       Australia  AUS 2018    0
13056      130                            Fiji  FJI 2018    0
13057      131                     New Zealand  NZL 2018    0
13058      132                Papua New Guinea  PNG 2018    0
13059      133                 Solomon Islands  SLB 2018    0
13060      134                         Vanuatu  VUT 2018    0
13061      135                   Western Samoa  WSM 2018    0
13062      136                         Bahrain  BHR 2018    0
13063      137                          Kuwait  KWT 2018    1
13064      138                            Oman  OMN 2018    0
13065      139                           Qatar  QAT 2018    0
13066      140                    Saudi Arabia  SAU 2018    0
13067      141            United Arab Emirates  ARE 2018    0
13068      142                     Afghanistan  AFG 2018    0
13069      143                         Albania  ALB 2018    0
13070      144                         Antigua  ATG 2018    0
13071      145                         Armenia  ARM 2018    0
13072      146                           Nauru    . 2018    0
13073      147                      Azerbaijan  AZE 2018    0
13074      148                          Bhutan  BTN 2018    0
13075      149                         Belarus  BLR 2018    0
13076      150              Bosnia-Herzegovina  BIH 2018    0
13077      151                          Brunei  BRN 2018    0
13078      152                        Cambodia  KHM 2018    0
13079      153                         Croatia  HRV 2018    0
13080      154                            Cuba  CUB 2018    0
13081      155                  Czech Republic  CZE 2018    0
13082      156                 Slovak Republic  SVK 2018    0
13083      157                        Dominica  DMA 2018    0
13084      158               Equatorial Guinea  GNQ 2018    1
13085      159                         Estonia  EST 2018    0
13086      160                         Eritrea  ERI 2018    0
13087      161                         Georgia  GEO 2018    0
13088      162                      Kazakhstan  KAZ 2018    1
13089      163                        Kiribati  KIR 2018    0
13090      164        Korea, North (Dem. Rep.)  PRK 2018    0
13091      165                      Kyrgyzstan  KGZ 2018    0
13092      166                          Latvia  LVA 2018    0
13093      167                         Lebanon  LBN 2018    0
13094      168                       Lithuania  LTU 2018    0
13095      169                       Macedonia  MKD 2018    0
13096      170                 Maldive Islands  MDV 2018    0
13097      171                         Moldova  MDA 2018    0
13098      172                         Namibia  NAM 2018    0
13099      174                       St. Lucia  LCA 2018    0
13100      175           Sao Tome and Principe  STP 2018    0
13101      176                        Slovenia  SVN 2018    0
13102      177                      Somaliland    . 2018    0
13103      178               Yemen PDR (South)    . 2018    0
13104      179             St. Kitts and Nevis  KNA 2018    0
13105      180                     St. Vincent  VCT 2018    0
13106      181                      Tajikistan  TJK 2018    0
13107      182                    Turkmenistan  TKM 2018    0
13108      183                         Ukraine  UKR 2018    0
13109      184                           Tonga  TON 2018    0
13110      185                      Uzbekistan  UZB 2018    0
13111      186                         Vietnam  VNM 2018    0
13112      187                          Cyprus  CYP 2018    0
13113      188                    Greek Cyprus    . 2018    0
13114      189 Micronesia, Federated States of  FSM 2018    0
13115      190               Republic of Yemen  YEM 2018    0
13116      191                         Germany  DEU 2018    0
13117      192                     Yugoslavia2  YUG 2018    0
13118      193                           Libya  LBY 2018    0
13119      194                       Ethiopia2  ETH 2018    1
13120      195                         Andorra  ADO 2018    0
13121      196                   Liechtenstein  LIE 2018    0
13122      197                Marshall Islands  MHL 2018    0
13123      198                           Palau  PLW 2018    0
13124      199                      San Marino  SMR 2018    0
13125        1                         Algeria  DZA 2019    0
13126        2                          Angola  AGO 2019    0
13127        3                           Benin  BEN 2019    0
13128        4                        Botswana  BWA 2019    0
13129        5                    Burkina Faso  BFA 2019    0
13130        6                         Burundi  BDI 2019    0
13131        7                        Cameroon  CMR 2019    0
13132        8                      Cape Verde  CPV 2019    0
13133        9        Central African Republic  CAF 2019    0
13134       10                            Chad  TCD 2019    0
13135       11                         Comoros  COM 2019    0
13136       12                           Congo  COG 2019    0
13137       13                        Djibouti  DJI 2019    0
13138       14                Egypt, Arab Rep.  EGY 2019    0
13139       15                        Ethiopia    . 2019    0
13140       16                           Gabon  GAB 2019    0
13141       17                     Gambia, The  GMB 2019    0
13142       18                           Ghana  GHA 2019    0
13143       19                          Guinea  GIN 2019    0
13144       20                   Guinea-Bissau  GNB 2019    0
13145       21                   Cote d'Ivoire  CIV 2019    1
13146       22                           Kenya  KEN 2019    0
13147       23                         Lesotho  LSO 2019    0
13148       24                         Liberia  LBR 2019    0
13149       25                      Madagascar  MDG 2019    0
13150       26                          Malawi  MWI 2019    0
13151       27                            Mali  MLI 2019    0
13152       28                      Mauritania  MRT 2019    0
13153       29                       Mauritius  MUS 2019    0
13154       30                         Morocco  MAR 2019    0
13155       31                      Mozambique  MOZ 2019    0
13156       32                           Niger  NER 2019    0
13157       33                         Nigeria  NGA 2019    0
13158       34                          Rwanda  RWA 2019    0
13159       35                         Senegal  SEN 2019    0
13160       36                      Seychelles  SYC 2019    0
13161       37                    Sierra Leone  SLE 2019    0
13162       38                         Somalia  SOM 2019    0
13163       39                    South Africa  ZAF 2019    1
13164       40                           Sudan  SDN 2019    0
13165       41                       Swaziland  SWZ 2019    0
13166       42                        Tanzania  TZA 2019    0
13167       43                            Togo  TGO 2019    0
13168       44                         Tunisia  TUN 2019    0
13169       45                          Uganda  UGA 2019    0
13170       46                           Zaire  ZAR 2019    0
13171       47                          Zambia  ZMB 2019    0
13172       48                        Zimbabwe  ZWE 2019    0
13173       49                    Bahamas, The  BHS 2019    0
13174       50                        Barbados  BRB 2019    0
13175       51                          Belize  BLZ 2019    0
13176       52                          Canada  CAN 2019    0
13177       53                      Costa Rica  CRI 2019    0
13178       54              Dominican Republic  DOM 2019    1
13179       55                     El Salvador  SLV 2019    0
13180       56                         Grenada  GRD 2019    0
13181       57                       Guatemala  GTM 2019    0
13182       58                           Haiti  HTI 2019    0
13183       59                        Honduras  HND 2019    0
13184       60                         Jamaica  JAM 2019    0
13185       61                          Mexico  MEX 2019    0
13186       62                       Nicaragua  NIC 2019    0
13187       63                          Panama  PAN 2019    0
13188       64             Trinidad and Tobago  TTO 2019    0
13189       66                       Argentina  ARG 2019    0
13190       67                         Bolivia  BOL 2019    0
13191       68                          Brazil  BRA 2019    0
13192       69                           Chile  CHL 2019    0
13193       70                        Colombia  COL 2019    0
13194       71                         Ecuador  ECU 2019    0
13195       72                          Guyana  GUY 2019    0
13196       73                        Paraguay  PRY 2019    0
13197       74                            Peru  PER 2019    1
13198       75                        Suriname  SUR 2019    0
13199       76                         Uruguay  URY 2019    0
13200       77                       Venezuela  VEN 2019    0
13201       78                      Bangladesh  BGD 2019    0
13202       80                           India  IND 2019    0
13203       81                       Indonesia  IDN 2019    1
13204       82              Iran, Islamic Rep.  IRN 2019    0
13205       83                            Iraq  IRQ 2019    0
13206       84                          Israel  ISR 2019    0
13207       85                           Japan  JPN 2019    0
13208       86                          Jordan  JOR 2019    0
13209       87             Korea, South (Rep.)  KOR 2019    0
13210       88                        Laos PDR  LAO 2019    0
13211       89                        Malaysia  MYS 2019    0
13212       90                        Mongolia  MNG 2019    0
13213       91                         Myanmar  MMR 2019    0
13214       92                           Nepal  NPL 2019    0
13215       93                        Pakistan  PAK 2019    0
13216       94                     Philippines  PHL 2019    0
13217       95                       Singapore  SGP 2019    0
13218       96                       Sri Lanka  LKA 2019    0
13219       97            Syrian Arab Republic  SYR 2019    0
13220       98                          Taiwan    . 2019    0
13221       99                        Thailand  THA 2019    0
13222      100             Yemen Arab Republic    . 2019    0
13223      101                         Austria  AUT 2019    0
13224      102                         Belgium  BEL 2019    1
13225      103                        Bulgaria  BGR 2019    0
13226      104                  Czechoslovakia    . 2019    0
13227      105                         Denmark  DNK 2019    0
13228      106                         Finland  FIN 2019    0
13229      108                   Germany, West    . 2019    0
13230      109                   Germany, East    . 2019    0
13231      110                          Greece  GRC 2019    0
13232      111                         Hungary  HUN 2019    0
13233      112                         Iceland  ISL 2019    0
13234      113                         Ireland  IRL 2019    0
13235      114                           Italy  ITA 2019    0
13236      115                      Luxembourg  LUX 2019    0
13237      116                           Malta  MLT 2019    0
13238      117                     Netherlands  NLD 2019    0
13239      118                          Norway  NOR 2019    0
13240      119                          Poland  POL 2019    1
13241      120                        Portugal  PRT 2019    0
13242      121                         Romania  ROM 2019    0
13243      122                           Spain  ESP 2019    0
13244      123                          Sweden  SWE 2019    0
13245      124                     Switzerland  CHE 2019    0
13246      125                          Turkey  TUR 2019    0
13247      128                      Yugoslavia    . 2019    0
13248      129                       Australia  AUS 2019    0
13249      130                            Fiji  FJI 2019    0
13250      131                     New Zealand  NZL 2019    0
13251      132                Papua New Guinea  PNG 2019    0
13252      133                 Solomon Islands  SLB 2019    0
13253      134                         Vanuatu  VUT 2019    0
13254      135                   Western Samoa  WSM 2019    0
13255      136                         Bahrain  BHR 2019    0
13256      137                          Kuwait  KWT 2019    1
13257      138                            Oman  OMN 2019    0
13258      139                           Qatar  QAT 2019    0
13259      140                    Saudi Arabia  SAU 2019    0
13260      141            United Arab Emirates  ARE 2019    0
13261      142                     Afghanistan  AFG 2019    0
13262      143                         Albania  ALB 2019    0
13263      144                         Antigua  ATG 2019    0
13264      145                         Armenia  ARM 2019    0
13265      146                           Nauru    . 2019    0
13266      147                      Azerbaijan  AZE 2019    0
13267      148                          Bhutan  BTN 2019    0
13268      149                         Belarus  BLR 2019    0
13269      150              Bosnia-Herzegovina  BIH 2019    0
13270      151                          Brunei  BRN 2019    0
13271      152                        Cambodia  KHM 2019    0
13272      153                         Croatia  HRV 2019    0
13273      154                            Cuba  CUB 2019    0
13274      155                  Czech Republic  CZE 2019    0
13275      156                 Slovak Republic  SVK 2019    0
13276      157                        Dominica  DMA 2019    0
13277      158               Equatorial Guinea  GNQ 2019    1
13278      159                         Estonia  EST 2019    0
13279      160                         Eritrea  ERI 2019    0
13280      161                         Georgia  GEO 2019    0
13281      162                      Kazakhstan  KAZ 2019    0
13282      163                        Kiribati  KIR 2019    0
13283      164        Korea, North (Dem. Rep.)  PRK 2019    0
13284      165                      Kyrgyzstan  KGZ 2019    0
13285      166                          Latvia  LVA 2019    0
13286      167                         Lebanon  LBN 2019    0
13287      168                       Lithuania  LTU 2019    0
13288      169                       Macedonia  MKD 2019    0
13289      170                 Maldive Islands  MDV 2019    0
13290      171                         Moldova  MDA 2019    0
13291      172                         Namibia  NAM 2019    0
13292      174                       St. Lucia  LCA 2019    0
13293      175           Sao Tome and Principe  STP 2019    0
13294      176                        Slovenia  SVN 2019    0
13295      177                      Somaliland    . 2019    0
13296      178               Yemen PDR (South)    . 2019    0
13297      179             St. Kitts and Nevis  KNA 2019    0
13298      180                     St. Vincent  VCT 2019    0
13299      181                      Tajikistan  TJK 2019    0
13300      182                    Turkmenistan  TKM 2019    0
13301      183                         Ukraine  UKR 2019    0
13302      184                           Tonga  TON 2019    0
13303      185                      Uzbekistan  UZB 2019    0
13304      186                         Vietnam  VNM 2019    0
13305      187                          Cyprus  CYP 2019    0
13306      188                    Greek Cyprus    . 2019    0
13307      189 Micronesia, Federated States of  FSM 2019    0
13308      190               Republic of Yemen  YEM 2019    0
13309      191                         Germany  DEU 2019    1
13310      192                     Yugoslavia2  YUG 2019    0
13311      193                           Libya  LBY 2019    0
13312      194                       Ethiopia2  ETH 2019    0
13313      195                         Andorra  ADO 2019    0
13314      196                   Liechtenstein  LIE 2019    0
13315      197                Marshall Islands  MHL 2019    0
13316      198                           Palau  PLW 2019    0
13317      199                      San Marino  SMR 2019    0

File formats for tabular data: Stata & SPSS

  • .dta are used by Stata
  • .sav are used by SPSS
  • You encounter them when someone in your team works with these programs
  • Fortunately, the haven package has no issue dealing with them and rio provides a nice consistent interface
  • When you look at the objects with View(), you even get the labels from Stata/SPSS under the column names (you can also use labelled::var_label(stata_dat$orgage) or attributes(stata_dat$orgage))
  • advantages :
    • you can work with your team
  • downside :
    • not really used by any other programs
    • not particularly well suited for data storage
stata_dat <- rio::import("data/files/terrorism-targets.dta")
rio::export(stata_dat, "data/files/terrorism-targets2.dta")
stata_dat
    year ccode
1   2004   645
2   1995   840
3   1996   840
4   1997   840
5   1998   840
6   1999   840
7   2000   840
8   2001   840
9   2002   840
10  2003   840
11  2004   840
12  2005   840
13  2006   840
14  2007   840
15  2001   750
16  1999   679
17  2003   679
18  2000   666
19  2001   666
20  2002   666
21  2003   666
22  2004   666
23  2005   666
24  2006   666
25  2007   666
26  2002   750
27  2004   750
28  2005   750
29  1996   530
30  1999   530
31  2002   750
32  2003   750
33  2004   750
34  2005   750
35  2006   750
36  2007   750
37  2004   645
38  2005   645
39  2006   645
40  2007   645
41  2007   615
42  2001     2
43  1997   750
44  1999   750
45  2003   750
46  1997   500
47  1998   500
48  1999   500
49  2000   500
50  2001   500
51  1999   325
52  2003   645
53  2004   645
54  2005   645
55  2006   645
56  2007   645
57  2004   645
58  2005   645
59  2001   325
60  2003   325
61  1998   451
62  1999   451
63  1995   365
64  1996   365
65  1999   365
66  2000   365
67  2001   365
68  2002   365
69  2003   365
70  2004   365
71  2005   365
72  2006   365
73  2007   365
74  1995   615
75  1996   615
76  1997   615
77  1998   615
78  1999   615
79  2000   615
80  2001   615
81  2002   615
82  2003   615
83  2004   615
84  2005   615
85  2006   615
86  1995   750
87  2007   750
88  2005   770
89  2006   770
90  2007   770
91  2005   800
92  2007   800
93  1995   230
94  1996   230
95  1997   230
96  1998   230
97  1999   230
98  2000   230
99  2001   230
100 2002   230
101 2003   230
102 2004   230
103 2005   230
104 2006   230
105 2007   230
106 2006   800
107 1995   910
108 1996   910
109 1998   220
110 1999   220
111 2000   220
112 2007   490
113 2005   750
114 2006   750
115 2007   750
116 1997   790
117 2000   790
118 2001   790
119 2003   790
120 2004   790
121 2005   790
122 1998   200
123 1995   220
124 1996   220
125 1997   220
126 1998   220
127 1999   220
128 2000   220
129 2001   220
130 2003   220
131 2005   220
132 2006   220
133 2007   220
134 1995   640
135 1996   640
136 1997   640
137 1998   640
138 1999   640
139 2000   640
140 2001   640
141 2003   640
142 1995   850
143 1999   850
144 2000   850
145 2001   850
146 2002   850
147 2003   850
148 2004   850
149 2005   850
150 1995   640
151 1997   640
152 1999   640
153 2000   640
154 2001   640
155 2003   640
156 1995    90
157 1995   666
158 1996   666
159 1997   666
160 1998   666
161 1999   666
162 2000   666
163 2001   666
164 2002   666
165 2003   666
166 2004   666
167 2005   666
168 2006   666
169 2007   666
170 1995   750
171 1996   750
172 1999   750
173 2000   750
174 2003   700
175 2005   700
176 2007   700
177 1995   660
178 1996   660
179 1997   660
180 1998   660
181 1999   660
182 2000   660
183 2004   660
184 2005   660
185 2006   660
186 1995   666
187 1996   666
188 1998   666
189 1999   666
190 2006   666
191 1995   750
192 1998   750
193 1999   750
194 2000   750
195 2001   750
196 2002   750
197 2003   750
198 2004   750
199 2005   750
200 2006   750
201 2007   750
202 2003   325
203 2005   325
204 2006   325
205 1995   200
206 1996   200
207 1997   200
208 1998   200
209 1999   200
210 2000   200
211 2002   200
212 2003   200
213 2005   200
214 2006   200
215 2004   645
216 2005   645
217 2006   645
218 2004   704
219 2007   645
220 2000   750
221 2001   750
222 2002   750
223 2003   750
224 2005   750
225 2006   750
226 2007   750
227 2003   771
228 2005   771
229 2006   771
230 2007   771
231 1996   750
232 1997   750
233 2000   750
234 2002   750
235 2003   750
236 2006   750
237 1995   750
238 1996   750
239 2000   850
240 2002   850
241 2003   850
242 2004   850
243 2005   850
244 2006   630
245 2007   630
246 2007   625
247 1997   451
248 1995   775
249 1996   775
250 1997   775
251 1999   775
252 2001   775
253 2002   775
254 2003   775
255 2005   775
256 2007   775
257 2003   750
258 1995   811
259 1996   811
260 1997   811
261 1998   811
262 1998   343
263 1998   345
264 1999   345
265 1995   640
266 1996   640
267 1997   640
268 1998   640
269 1999   640
270 2000   640
271 2003   640
272 2004   640
273 2005   640
274 2006   640
275 2007   640
276 1996   770
277 1998   770
278 1999   770
279 2000   770
280 2001   770
281 2002   770
282 2003   770
283 2004   770
284 2005   770
285 2006   770
286 2001   770
287 2002   770
288 1999   750
289 2000   750
290 2001   750
291 2002   750
292 2003   750
293 2004   750
294 2005   750
295 2006   750
296 2007   750
297 1995   780
298 1996   780
299 1997   780
300 1998   780
301 1999   780
302 2000   780
303 2001   780
304 2002   780
305 2003   780
306 2004   780
307 2005   780
308 2006   780
309 2007   780
310 1995   500
311 1996   500
312 1997   500
313 1998   500
314 2000   500
315 2001   500
316 2002   500
317 2003   500
318 2004   500
319 2005   500
320 2004   645
321 2006   645
322 1995   750
323 1997   750
324 1999   750
325 2000   750
326 2001   750
327 2002   750
328 2003   750
329 2004   750
330 2007   750
331 1999   790
332 2000   790
333 2001   790
334 2002   790
335 2003   790
336 2004   790
337 2005   790
338 2006   790
339 2001   490
340 2007   490
341 1995   775
342 1995   840
343 1996   840
344 1997   840
345 1998   840
346 1999   840
347 2000   840
348 2001   840
349 2002   840
350 2003   840
351 2004   840
352 2006   840
353 2007   840
354 1995   840
355 1996   840
356 1997   840
357 1999   840
358 2000   840
359 2005   840
360 2007   840
361 1999   483
362 2002   483
363 1995   433
364 1997   433
365 1998   433
366 2000   433
367 2001   433
368 2004   800
369 1995   770
370 1996   770
371 1998   770
372 1999   770
373 2000   770
374 2001   770
375 2002   770
376 1996   516
377 1997   516
378 1999   516
379 2001   516
380 2002   516
381 2003   516
382 1995   750
383 1996   750
384 1997   750
385 1998   750
386 1999   750
387 2000   750
388 2001   750
389 2002   750
390 2004   750
391 2006   750
392 2001   343
393 1995   100
394 1996   100
395 1997   100
396 1998   100
397 1999   100
398 2000   100
399 2001   100
400 2002   100
401 2003   100
402 2004   100
403 2005   100
404 2006   100
405 1998   750
406 1999   750
407 2000   750
408 2001   750
409 2002   750
410 2003   750
411 2004   750
412 2005   750
413 2000   750
414 2001   750
415 2007   750
416 1995   750
417 1996   750
418 1995   540
419 1997   540
420 1998   540
421 1999   540
422 2000   540
423 2001   540
424 2002   540
425 1995   840
426 1996   840
427 1997   840
428 1999   840
429 2000   840
430 2001   840
431 2002   840
432 2003   840
433 2004   840
434 2005   840
435 2006   840
436 2007   840
437 2007   530
438 1999   530
439 2002   530
440 2003   530
441 2004   530
442 1995   666
443 2000   666
444 2001   666
445 2002   666
446 2003   666
447 2004   666
448 2005   666
449 2006   666
450 2007   666
451 2000   666
452 2001   666
453 2002   666
454 1998   516
455 2000   516
456 2001   516
457 2002   516
458 2003   516
459 2005   516
460 2006   516
461 1997   800
462 1998   800
463 2001   800
464 2003   800
465 2005   800
466 2006   800
467 2000   750
468 1996   750
469 1997   750
470 1998   750
471 1999   750
472 2000   750
473 2001   750
474 2002   750
475 2003   750
476 2004   750
477 1995   666
478 1996   666
479 2001   666
480 2002   666
481 2003   666
482 2004   666
483 2005   666
484 2007   666
485 2000   666
486 2001   666
487 2002   666
488 2003   666
489 2004   666
490 2005   666
491 2006   666
492 2007   666
493 1996    70
494 2003   325
495 2004   325
496 2005   771
497 2006   771
498 1998   200
499 2000   200
500 2001   200
501 2002   200
502 2003   200
503 2004   200
504 2007   200
505 1999   325
506 2003   325
507 1995   100
508 1996   100
509 1997   100
510 1998   100
511 1999   100
512 2000   100
513 2001   100
514 2002   100
515 2003   100
516 2004   100
517 2005   100
518 2006   100
519 2007   100
520 1997   850
521 2000   325
522 1996   350
523 1997   350
524 1998   350
525 1999   350
526 2000   350
527 2000   225
528 2001   225
529 1997   350
530 1998   350
531 2003   350
532 2004   350
533 2005   350
534 2006   350
535 2007   350
536 1995   451
537 1998   451
538 1999   451
539 2000   451
540 2002   365
541 2004   365
542 2005   365
543 2007   365
544 1999   615
545 2000   615
546 2001   615
547 2002   615
548 2003   615
549 2004   615
550 2005   615
551 2006   615
552 2007   615
553 2002   325
554 2002   750
555 2004   750
556 1995   135
557 1996   135
558 1997   135
559 1998   135
560 1999   135
561 2000   135
562 2001   135
563 2002   135
564 2003   135
565 2004   135
566 2005   135
567 2006   135
568 2007   135
569 2003   101
570 1995   625
571 1996   625
572 1999   625
573 2000   625
574 2001   625
575 2005   625
576 2006   625
577 2007   625
578 1996   645
579 1999   365
580 1995   700
581 2001   700
582 2002   700
583 2003   700
584 2004   700
585 2005   700
586 2006   700
587 2007   700
588 2005   800
589 2007   436
590 2007   432
591 2008   436
592 1995   135
593 1996   135
594 1997   135
595 1999   101
596 2001   101
597 1997   640
598 1998   640
599 1999   640
600 2000   640
601 2003   640
602 1997   490
603 1998   490
604 1999   625
605 2006   483
606 2007   483
607 2006   483
608 1996   750
609 1997   750
610 1998   750
611 1999   750
612 2000   750
613 2001   750
614 2002   750
615 2003   750
616 2004   750
617 2005   750
618 2006   750
619 2007   750
620 2003   750
621 2001   666
622 2002   666
623 2005   666
624 2006   666
625 2007   666
626 1995   651
627 1996   651
628 1997   651
629 1998   651
                                                                      gtdname
1                                                    1920 Revolution Brigades
2                                                      Abu Sayyaf Group (ASG)
3                                                      Abu Sayyaf Group (ASG)
4                                                      Abu Sayyaf Group (ASG)
5                                                      Abu Sayyaf Group (ASG)
6                                                      Abu Sayyaf Group (ASG)
7                                                      Abu Sayyaf Group (ASG)
8                                                      Abu Sayyaf Group (ASG)
9                                                      Abu Sayyaf Group (ASG)
10                                                     Abu Sayyaf Group (ASG)
11                                                     Abu Sayyaf Group (ASG)
12                                                     Abu Sayyaf Group (ASG)
13                                                     Abu Sayyaf Group (ASG)
14                                                     Abu Sayyaf Group (ASG)
15                                    Achik National Volunteer Council (ANVC)
16                                             Adan Abyan Islamic Army (AAIA)
17                                             Adan Abyan Islamic Army (AAIA)
18                                                    Al-Aqsa Martyrs Brigade
19                                                    Al-Aqsa Martyrs Brigade
20                                                    Al-Aqsa Martyrs Brigade
21                                                    Al-Aqsa Martyrs Brigade
22                                                    Al-Aqsa Martyrs Brigade
23                                                    Al-Aqsa Martyrs Brigade
24                                                    Al-Aqsa Martyrs Brigade
25                                                    Al-Aqsa Martyrs Brigade
26                                                                 Al-Arifeen
27                                                                 Al-Arifeen
28                                                                 Al-Arifeen
29                                               Al-Ittihaad al-Islami (AIAI)
30                                               Al-Ittihaad al-Islami (AIAI)
31                                                              Al-Mansoorian
32                                                              Al-Mansoorian
33                                                              Al-Mansoorian
34                                                              Al-Mansoorian
35                                                              Al-Mansoorian
36                                                              Al-Mansoorian
37                                                          Al-Qa`ida in Iraq
38                                                          Al-Qa`ida in Iraq
39                                                          Al-Qa`ida in Iraq
40                                                          Al-Qa`ida in Iraq
41                      Al-Qa`ida in the Lands of the Islamic Maghreb (AQLIM)
42                                                                  Al-Qa`ida
43                                             All Tripura Tiger Force (ATTF)
44                                             All Tripura Tiger Force (ATTF)
45                                             All Tripura Tiger Force (ATTF)
46                                             Allied Democratic Forces (ADF)
47                                             Allied Democratic Forces (ADF)
48                                             Allied Democratic Forces (ADF)
49                                             Allied Democratic Forces (ADF)
50                                             Allied Democratic Forces (ADF)
51                                                      Angry Brigade (Italy)
52                                                             Ansar al-Islam
53                                                             Ansar al-Islam
54                                                             Ansar al-Islam
55                                                             Ansar al-Islam
56                                                             Ansar al-Islam
57                                                             Ansar al-Sunna
58                                                             Ansar al-Sunna
59                                  Anti-Imperialist Territorial Nuclei (NTA)
60                                  Anti-Imperialist Territorial Nuclei (NTA)
61                                  Armed Forces Revolutionary Council (AFRC)
62                                  Armed Forces Revolutionary Council (AFRC)
63                           Armed Forces of the Chechen Republic of Ichkeria
64                           Armed Forces of the Chechen Republic of Ichkeria
65                           Armed Forces of the Chechen Republic of Ichkeria
66                           Armed Forces of the Chechen Republic of Ichkeria
67                           Armed Forces of the Chechen Republic of Ichkeria
68                           Armed Forces of the Chechen Republic of Ichkeria
69                           Armed Forces of the Chechen Republic of Ichkeria
70                           Armed Forces of the Chechen Republic of Ichkeria
71                           Armed Forces of the Chechen Republic of Ichkeria
72                           Armed Forces of the Chechen Republic of Ichkeria
73                           Armed Forces of the Chechen Republic of Ichkeria
74                                                  Armed Islamic Group (GIA)
75                                                  Armed Islamic Group (GIA)
76                                                  Armed Islamic Group (GIA)
77                                                  Armed Islamic Group (GIA)
78                                                  Armed Islamic Group (GIA)
79                                                  Armed Islamic Group (GIA)
80                                                  Armed Islamic Group (GIA)
81                                                  Armed Islamic Group (GIA)
82                                                  Armed Islamic Group (GIA)
83                                                  Armed Islamic Group (GIA)
84                                                  Armed Islamic Group (GIA)
85                                                  Armed Islamic Group (GIA)
86                                          Babbar Khalsa International (BKI)
87                                          Babbar Khalsa International (BKI)
88                                               Baloch Liberation Army (BLA)
89                                               Baloch Liberation Army (BLA)
90                                               Baloch Liberation Army (BLA)
91                                            Barisan Revolusi Nasional (BRN)
92                                            Barisan Revolusi Nasional (BRN)
93                                        Basque Fatherland and Freedom (ETA)
94                                        Basque Fatherland and Freedom (ETA)
95                                        Basque Fatherland and Freedom (ETA)
96                                        Basque Fatherland and Freedom (ETA)
97                                        Basque Fatherland and Freedom (ETA)
98                                        Basque Fatherland and Freedom (ETA)
99                                        Basque Fatherland and Freedom (ETA)
100                                       Basque Fatherland and Freedom (ETA)
101                                       Basque Fatherland and Freedom (ETA)
102                                       Basque Fatherland and Freedom (ETA)
103                                       Basque Fatherland and Freedom (ETA)
104                                       Basque Fatherland and Freedom (ETA)
105                                       Basque Fatherland and Freedom (ETA)
106                                                                   Bersatu
107                                     Bougainville Revolutionary Army (BRA)
108                                     Bougainville Revolutionary Army (BRA)
109                                             Breton Liberation Front (FLB)
110                                             Breton Liberation Front (FLB)
111                                             Breton Liberation Front (FLB)
112                                                     Bunda Dia Kongo (BDK)
113                            Communist Party of India - Maoist (CPI-Maoist)
114                            Communist Party of India - Maoist (CPI-Maoist)
115                            Communist Party of India - Maoist (CPI-Maoist)
116                                  Communist Party of Nepal- Maoist (CPN-M)
117                                  Communist Party of Nepal- Maoist (CPN-M)
118                                  Communist Party of Nepal- Maoist (CPN-M)
119                                  Communist Party of Nepal- Maoist (CPN-M)
120                                  Communist Party of Nepal- Maoist (CPN-M)
121                                  Communist Party of Nepal- Maoist (CPN-M)
122                                   Continuity Irish Republican Army (CIRA)
123                                 Corsican National Liberation Front (FLNC)
124                                 Corsican National Liberation Front (FLNC)
125                                 Corsican National Liberation Front (FLNC)
126                                 Corsican National Liberation Front (FLNC)
127                                 Corsican National Liberation Front (FLNC)
128                                 Corsican National Liberation Front (FLNC)
129                                 Corsican National Liberation Front (FLNC)
130                                 Corsican National Liberation Front (FLNC)
131                                 Corsican National Liberation Front (FLNC)
132                                 Corsican National Liberation Front (FLNC)
133                                 Corsican National Liberation Front (FLNC)
134                                  Devrimici Halk Kurtulus Cephesi (DHKP/C)
135                                  Devrimici Halk Kurtulus Cephesi (DHKP/C)
136                                  Devrimici Halk Kurtulus Cephesi (DHKP/C)
137                                  Devrimici Halk Kurtulus Cephesi (DHKP/C)
138                                  Devrimici Halk Kurtulus Cephesi (DHKP/C)
139                                  Devrimici Halk Kurtulus Cephesi (DHKP/C)
140                                  Devrimici Halk Kurtulus Cephesi (DHKP/C)
141                                  Devrimici Halk Kurtulus Cephesi (DHKP/C)
142                                                  Free Aceh Movement (GAM)
143                                                  Free Aceh Movement (GAM)
144                                                  Free Aceh Movement (GAM)
145                                                  Free Aceh Movement (GAM)
146                                                  Free Aceh Movement (GAM)
147                                                  Free Aceh Movement (GAM)
148                                                  Free Aceh Movement (GAM)
149                                                  Free Aceh Movement (GAM)
150                              Great Eastern Islamic Raiders Front (IBDA-C)
151                              Great Eastern Islamic Raiders Front (IBDA-C)
152                              Great Eastern Islamic Raiders Front (IBDA-C)
153                              Great Eastern Islamic Raiders Front (IBDA-C)
154                              Great Eastern Islamic Raiders Front (IBDA-C)
155                              Great Eastern Islamic Raiders Front (IBDA-C)
156                            Guatemalan National Revolutionary Unity (URNG)
157                                       Hamas (Islamic Resistance Movement)
158                                       Hamas (Islamic Resistance Movement)
159                                       Hamas (Islamic Resistance Movement)
160                                       Hamas (Islamic Resistance Movement)
161                                       Hamas (Islamic Resistance Movement)
162                                       Hamas (Islamic Resistance Movement)
163                                       Hamas (Islamic Resistance Movement)
164                                       Hamas (Islamic Resistance Movement)
165                                       Hamas (Islamic Resistance Movement)
166                                       Hamas (Islamic Resistance Movement)
167                                       Hamas (Islamic Resistance Movement)
168                                       Hamas (Islamic Resistance Movement)
169                                       Hamas (Islamic Resistance Movement)
170                                                           Harkat ul Ansar
171                                                           Harkat ul Ansar
172                                                           Harkat ul Ansar
173                                                           Harkat ul Ansar
174                                                             Hizb-I-Islami
175                                                             Hizb-I-Islami
176                                                             Hizb-I-Islami
177                                                                 Hizballah
178                                                                 Hizballah
179                                                                 Hizballah
180                                                                 Hizballah
181                                                                 Hizballah
182                                                                 Hizballah
183                                                                 Hizballah
184                                                                 Hizballah
185                                                                 Hizballah
186                                                                 Hizballah
187                                                                 Hizballah
188                                                                 Hizballah
189                                                                 Hizballah
190                                                                 Hizballah
191                                                    Hizbul Mujahideen (HM)
192                                                    Hizbul Mujahideen (HM)
193                                                    Hizbul Mujahideen (HM)
194                                                    Hizbul Mujahideen (HM)
195                                                    Hizbul Mujahideen (HM)
196                                                    Hizbul Mujahideen (HM)
197                                                    Hizbul Mujahideen (HM)
198                                                    Hizbul Mujahideen (HM)
199                                                    Hizbul Mujahideen (HM)
200                                                    Hizbul Mujahideen (HM)
201                                                    Hizbul Mujahideen (HM)
202                                             Informal Anarchist Federation
203                                             Informal Anarchist Federation
204                                             Informal Anarchist Federation
205                                               Irish Republican Army (IRA)
206                                               Irish Republican Army (IRA)
207                                               Irish Republican Army (IRA)
208                                               Irish Republican Army (IRA)
209                                               Irish Republican Army (IRA)
210                                               Irish Republican Army (IRA)
211                                               Irish Republican Army (IRA)
212                                               Irish Republican Army (IRA)
213                                               Irish Republican Army (IRA)
214                                               Irish Republican Army (IRA)
215                      Islamic Army in Iraq (al-Jaish al-Islami fi al-Iraq)
216                      Islamic Army in Iraq (al-Jaish al-Islami fi al-Iraq)
217                      Islamic Army in Iraq (al-Jaish al-Islami fi al-Iraq)
218                                                 Islamic Jihad Group (IJG)
219                                               Islamic State of Iraq (ISI)
220                                                    Jaish-e-Mohammad (JeM)
221                                                    Jaish-e-Mohammad (JeM)
222                                                    Jaish-e-Mohammad (JeM)
223                                                    Jaish-e-Mohammad (JeM)
224                                                    Jaish-e-Mohammad (JeM)
225                                                    Jaish-e-Mohammad (JeM)
226                                                    Jaish-e-Mohammad (JeM)
227                                     Jama'atul Mujahideen Bangladesh (JMB)
228                                     Jama'atul Mujahideen Bangladesh (JMB)
229                                     Jama'atul Mujahideen Bangladesh (JMB)
230                                     Jama'atul Mujahideen Bangladesh (JMB)
231                                                 Jamiat ul-Mujahedin (JuM)
232                                                 Jamiat ul-Mujahedin (JuM)
233                                                 Jamiat ul-Mujahedin (JuM)
234                                                 Jamiat ul-Mujahedin (JuM)
235                                                 Jamiat ul-Mujahedin (JuM)
236                                                 Jamiat ul-Mujahedin (JuM)
237                                           Jammu and Kashmir Islamic Front
238                                           Jammu and Kashmir Islamic Front
239                                                      Jemaah Islamiya (JI)
240                                                      Jemaah Islamiya (JI)
241                                                      Jemaah Islamiya (JI)
242                                                      Jemaah Islamiya (JI)
243                                                      Jemaah Islamiya (JI)
244                                                                 Jundallah
245                                                                 Jundallah
246                                       Justice and Equality Movement (JEM)
247                                                           Kamajor Hunters
248                                                      Karen National Union
249                                                      Karen National Union
250                                                      Karen National Union
251                                                      Karen National Union
252                                                      Karen National Union
253                                                      Karen National Union
254                                                      Karen National Union
255                                                      Karen National Union
256                                                      Karen National Union
257                                                     Kashmir Freedom Force
258                                                               Khmer Rouge
259                                                               Khmer Rouge
260                                                               Khmer Rouge
261                                                               Khmer Rouge
262                                              Kosovo Liberation Army (KLA)
263                                              Kosovo Liberation Army (KLA)
264                                              Kosovo Liberation Army (KLA)
265                                            Kurdistan Workers' Party (PKK)
266                                            Kurdistan Workers' Party (PKK)
267                                            Kurdistan Workers' Party (PKK)
268                                            Kurdistan Workers' Party (PKK)
269                                            Kurdistan Workers' Party (PKK)
270                                            Kurdistan Workers' Party (PKK)
271                                            Kurdistan Workers' Party (PKK)
272                                            Kurdistan Workers' Party (PKK)
273                                            Kurdistan Workers' Party (PKK)
274                                            Kurdistan Workers' Party (PKK)
275                                            Kurdistan Workers' Party (PKK)
276                                                         Lashkar-e-Jhangvi
277                                                         Lashkar-e-Jhangvi
278                                                         Lashkar-e-Jhangvi
279                                                         Lashkar-e-Jhangvi
280                                                         Lashkar-e-Jhangvi
281                                                         Lashkar-e-Jhangvi
282                                                         Lashkar-e-Jhangvi
283                                                         Lashkar-e-Jhangvi
284                                                         Lashkar-e-Jhangvi
285                                                         Lashkar-e-Jhangvi
286                                                            Lashkar-e-Omar
287                                                            Lashkar-e-Omar
288                                                     Lashkar-e-Taiba (LeT)
289                                                     Lashkar-e-Taiba (LeT)
290                                                     Lashkar-e-Taiba (LeT)
291                                                     Lashkar-e-Taiba (LeT)
292                                                     Lashkar-e-Taiba (LeT)
293                                                     Lashkar-e-Taiba (LeT)
294                                                     Lashkar-e-Taiba (LeT)
295                                                     Lashkar-e-Taiba (LeT)
296                                                     Lashkar-e-Taiba (LeT)
297                                   Liberation Tigers of Tamil Eelam (LTTE)
298                                   Liberation Tigers of Tamil Eelam (LTTE)
299                                   Liberation Tigers of Tamil Eelam (LTTE)
300                                   Liberation Tigers of Tamil Eelam (LTTE)
301                                   Liberation Tigers of Tamil Eelam (LTTE)
302                                   Liberation Tigers of Tamil Eelam (LTTE)
303                                   Liberation Tigers of Tamil Eelam (LTTE)
304                                   Liberation Tigers of Tamil Eelam (LTTE)
305                                   Liberation Tigers of Tamil Eelam (LTTE)
306                                   Liberation Tigers of Tamil Eelam (LTTE)
307                                   Liberation Tigers of Tamil Eelam (LTTE)
308                                   Liberation Tigers of Tamil Eelam (LTTE)
309                                   Liberation Tigers of Tamil Eelam (LTTE)
310                                              Lord's Resistance Army (LRA)
311                                              Lord's Resistance Army (LRA)
312                                              Lord's Resistance Army (LRA)
313                                              Lord's Resistance Army (LRA)
314                                              Lord's Resistance Army (LRA)
315                                              Lord's Resistance Army (LRA)
316                                              Lord's Resistance Army (LRA)
317                                              Lord's Resistance Army (LRA)
318                                              Lord's Resistance Army (LRA)
319                                              Lord's Resistance Army (LRA)
320                                                                Mahdi Army
321                                                                Mahdi Army
322                                             Maoist Communist Center (MCC)
323                                             Maoist Communist Center (MCC)
324                                             Maoist Communist Center (MCC)
325                                             Maoist Communist Center (MCC)
326                                             Maoist Communist Center (MCC)
327                                             Maoist Communist Center (MCC)
328                                             Maoist Communist Center (MCC)
329                                             Maoist Communist Center (MCC)
330                                             Maoist Communist Center (MCC)
331                                                                   Maoists
332                                                                   Maoists
333                                                                   Maoists
334                                                                   Maoists
335                                                                   Maoists
336                                                                   Maoists
337                                                                   Maoists
338                                                                   Maoists
339                                                                 Mayi Mayi
340                                                                 Mayi Mayi
341                                                      Mong Thai Army (MTA)
342                                      Moro Islamic Liberation Front (MILF)
343                                      Moro Islamic Liberation Front (MILF)
344                                      Moro Islamic Liberation Front (MILF)
345                                      Moro Islamic Liberation Front (MILF)
346                                      Moro Islamic Liberation Front (MILF)
347                                      Moro Islamic Liberation Front (MILF)
348                                      Moro Islamic Liberation Front (MILF)
349                                      Moro Islamic Liberation Front (MILF)
350                                      Moro Islamic Liberation Front (MILF)
351                                      Moro Islamic Liberation Front (MILF)
352                                      Moro Islamic Liberation Front (MILF)
353                                      Moro Islamic Liberation Front (MILF)
354                                     Moro National Liberation Front (MNLF)
355                                     Moro National Liberation Front (MNLF)
356                                     Moro National Liberation Front (MNLF)
357                                     Moro National Liberation Front (MNLF)
358                                     Moro National Liberation Front (MNLF)
359                                     Moro National Liberation Front (MNLF)
360                                     Moro National Liberation Front (MNLF)
361                         Movement for Democracy and Justice in Chad (MDJT)
362                         Movement for Democracy and Justice in Chad (MDJT)
363                                Movement of Democratic Forces of Casamance
364                                Movement of Democratic Forces of Casamance
365                                Movement of Democratic Forces of Casamance
366                                Movement of Democratic Forces of Casamance
367                                Movement of Democratic Forces of Casamance
368                                                  Mujahideen Islam Pattani
369                                             Muttahida Qami Movement (MQM)
370                                             Muttahida Qami Movement (MQM)
371                                             Muttahida Qami Movement (MQM)
372                                             Muttahida Qami Movement (MQM)
373                                             Muttahida Qami Movement (MQM)
374                                             Muttahida Qami Movement (MQM)
375                                             Muttahida Qami Movement (MQM)
376                          National Council for Defense of Democracy (NCDD)
377                          National Council for Defense of Democracy (NCDD)
378                          National Council for Defense of Democracy (NCDD)
379                          National Council for Defense of Democracy (NCDD)
380                          National Council for Defense of Democracy (NCDD)
381                          National Council for Defense of Democracy (NCDD)
382                              National Democratic Front of Bodoland (NDFB)
383                              National Democratic Front of Bodoland (NDFB)
384                              National Democratic Front of Bodoland (NDFB)
385                              National Democratic Front of Bodoland (NDFB)
386                              National Democratic Front of Bodoland (NDFB)
387                              National Democratic Front of Bodoland (NDFB)
388                              National Democratic Front of Bodoland (NDFB)
389                              National Democratic Front of Bodoland (NDFB)
390                              National Democratic Front of Bodoland (NDFB)
391                              National Democratic Front of Bodoland (NDFB)
392                                National Liberation Army (NLA) (Macedonia)
393                                National Liberation Army of Colombia (ELN)
394                                National Liberation Army of Colombia (ELN)
395                                National Liberation Army of Colombia (ELN)
396                                National Liberation Army of Colombia (ELN)
397                                National Liberation Army of Colombia (ELN)
398                                National Liberation Army of Colombia (ELN)
399                                National Liberation Army of Colombia (ELN)
400                                National Liberation Army of Colombia (ELN)
401                                National Liberation Army of Colombia (ELN)
402                                National Liberation Army of Colombia (ELN)
403                                National Liberation Army of Colombia (ELN)
404                                National Liberation Army of Colombia (ELN)
405                               National Liberation Front of Tripura (NLFT)
406                               National Liberation Front of Tripura (NLFT)
407                               National Liberation Front of Tripura (NLFT)
408                               National Liberation Front of Tripura (NLFT)
409                               National Liberation Front of Tripura (NLFT)
410                               National Liberation Front of Tripura (NLFT)
411                               National Liberation Front of Tripura (NLFT)
412                               National Liberation Front of Tripura (NLFT)
413              National Socialist Council of Nagaland-Isak-Muivah (NSCN-IM)
414              National Socialist Council of Nagaland-Isak-Muivah (NSCN-IM)
415              National Socialist Council of Nagaland-Isak-Muivah (NSCN-IM)
416                                    National Socialist Council of Nagaland
417                                    National Socialist Council of Nagaland
418               National Union for the Total Independence of Angola (UNITA)
419               National Union for the Total Independence of Angola (UNITA)
420               National Union for the Total Independence of Angola (UNITA)
421               National Union for the Total Independence of Angola (UNITA)
422               National Union for the Total Independence of Angola (UNITA)
423               National Union for the Total Independence of Angola (UNITA)
424               National Union for the Total Independence of Angola (UNITA)
425                                                   New People's Army (NPA)
426                                                   New People's Army (NPA)
427                                                   New People's Army (NPA)
428                                                   New People's Army (NPA)
429                                                   New People's Army (NPA)
430                                                   New People's Army (NPA)
431                                                   New People's Army (NPA)
432                                                   New People's Army (NPA)
433                                                   New People's Army (NPA)
434                                                   New People's Army (NPA)
435                                                   New People's Army (NPA)
436                                                   New People's Army (NPA)
437                                   Ogaden National Liberation Front (ONLF)
438                                                    Oromo Liberation Front
439                                                    Oromo Liberation Front
440                                                    Oromo Liberation Front
441                                                    Oromo Liberation Front
442                                           Palestinian Islamic Jihad (PIJ)
443                                           Palestinian Islamic Jihad (PIJ)
444                                           Palestinian Islamic Jihad (PIJ)
445                                           Palestinian Islamic Jihad (PIJ)
446                                           Palestinian Islamic Jihad (PIJ)
447                                           Palestinian Islamic Jihad (PIJ)
448                                           Palestinian Islamic Jihad (PIJ)
449                                           Palestinian Islamic Jihad (PIJ)
450                                           Palestinian Islamic Jihad (PIJ)
451                                                        Palestinians (PNA)
452                                                        Palestinians (PNA)
453                                                        Palestinians (PNA)
454                  Party for the Liberation of the Hutu People (PALIPEHUTU)
455                  Party for the Liberation of the Hutu People (PALIPEHUTU)
456                  Party for the Liberation of the Hutu People (PALIPEHUTU)
457                  Party for the Liberation of the Hutu People (PALIPEHUTU)
458                  Party for the Liberation of the Hutu People (PALIPEHUTU)
459                  Party for the Liberation of the Hutu People (PALIPEHUTU)
460                  Party for the Liberation of the Hutu People (PALIPEHUTU)
461                             Pattani United Liberation Organization (PULO)
462                             Pattani United Liberation Organization (PULO)
463                             Pattani United Liberation Organization (PULO)
464                             Pattani United Liberation Organization (PULO)
465                             Pattani United Liberation Organization (PULO)
466                             Pattani United Liberation Organization (PULO)
467                                          People's Liberation Army (India)
468                                                  People's War Group (PWG)
469                                                  People's War Group (PWG)
470                                                  People's War Group (PWG)
471                                                  People's War Group (PWG)
472                                                  People's War Group (PWG)
473                                                  People's War Group (PWG)
474                                                  People's War Group (PWG)
475                                                  People's War Group (PWG)
476                                                  People's War Group (PWG)
477                      Popular Front for the Liberation of Palestine (PFLP)
478                      Popular Front for the Liberation of Palestine (PFLP)
479                      Popular Front for the Liberation of Palestine (PFLP)
480                      Popular Front for the Liberation of Palestine (PFLP)
481                      Popular Front for the Liberation of Palestine (PFLP)
482                      Popular Front for the Liberation of Palestine (PFLP)
483                      Popular Front for the Liberation of Palestine (PFLP)
484                      Popular Front for the Liberation of Palestine (PFLP)
485                                             Popular Resistance Committees
486                                             Popular Resistance Committees
487                                             Popular Resistance Committees
488                                             Popular Resistance Committees
489                                             Popular Resistance Committees
490                                             Popular Resistance Committees
491                                             Popular Resistance Committees
492                                             Popular Resistance Committees
493                                       Popular Revolutionary Army (Mexico)
494                                          Proletarian Nuclei for Communism
495                                          Proletarian Nuclei for Communism
496                                             Purbo Banglar Communist Party
497                                             Purbo Banglar Communist Party
498                                         Real Irish Republican Army (RIRA)
499                                         Real Irish Republican Army (RIRA)
500                                         Real Irish Republican Army (RIRA)
501                                         Real Irish Republican Army (RIRA)
502                                         Real Irish Republican Army (RIRA)
503                                         Real Irish Republican Army (RIRA)
504                                         Real Irish Republican Army (RIRA)
505                            Red Brigades Fighting Communist Party (BR-PCC)
506                            Red Brigades Fighting Communist Party (BR-PCC)
507                             Revolutionary Armed Forces of Colombia (FARC)
508                             Revolutionary Armed Forces of Colombia (FARC)
509                             Revolutionary Armed Forces of Colombia (FARC)
510                             Revolutionary Armed Forces of Colombia (FARC)
511                             Revolutionary Armed Forces of Colombia (FARC)
512                             Revolutionary Armed Forces of Colombia (FARC)
513                             Revolutionary Armed Forces of Colombia (FARC)
514                             Revolutionary Armed Forces of Colombia (FARC)
515                             Revolutionary Armed Forces of Colombia (FARC)
516                             Revolutionary Armed Forces of Colombia (FARC)
517                             Revolutionary Armed Forces of Colombia (FARC)
518                             Revolutionary Armed Forces of Colombia (FARC)
519                             Revolutionary Armed Forces of Colombia (FARC)
520              Revolutionary Front for an Independent East Timor (FRETILIN)
521                                           Revolutionary Leninist Brigades
522                                                      Revolutionary Nuclei
523                                                      Revolutionary Nuclei
524                                                      Revolutionary Nuclei
525                                                      Revolutionary Nuclei
526                                                      Revolutionary Nuclei
527                                                 Revolutionary Perspective
528                                                 Revolutionary Perspective
529                                                    Revolutionary Struggle
530                                                    Revolutionary Struggle
531                                                    Revolutionary Struggle
532                                                    Revolutionary Struggle
533                                                    Revolutionary Struggle
534                                                    Revolutionary Struggle
535                                                    Revolutionary Struggle
536                                          Revolutionary United Front (RUF)
537                                          Revolutionary United Front (RUF)
538                                          Revolutionary United Front (RUF)
539                                          Revolutionary United Front (RUF)
540 Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs
541 Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs
542 Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs
543 Riyadus-Salikhin Reconnaissance and Sabotage Battalion of Chechen Martyrs
544                          Salafist Group for Preaching and Fighting (GSPC)
545                          Salafist Group for Preaching and Fighting (GSPC)
546                          Salafist Group for Preaching and Fighting (GSPC)
547                          Salafist Group for Preaching and Fighting (GSPC)
548                          Salafist Group for Preaching and Fighting (GSPC)
549                          Salafist Group for Preaching and Fighting (GSPC)
550                          Salafist Group for Preaching and Fighting (GSPC)
551                          Salafist Group for Preaching and Fighting (GSPC)
552                          Salafist Group for Preaching and Fighting (GSPC)
553                                               Sardinian Autonomy Movement
554                                                     Save Kashmir Movement
555                                                     Save Kashmir Movement
556                                                         Shining Path (SL)
557                                                         Shining Path (SL)
558                                                         Shining Path (SL)
559                                                         Shining Path (SL)
560                                                         Shining Path (SL)
561                                                         Shining Path (SL)
562                                                         Shining Path (SL)
563                                                         Shining Path (SL)
564                                                         Shining Path (SL)
565                                                         Shining Path (SL)
566                                                         Shining Path (SL)
567                                                         Shining Path (SL)
568                                                         Shining Path (SL)
569                         Simon Bolivar Guerrilla Coordinating Board (CGSB)
570                                     Sudan People's Liberation Army (SPLA)
571                                     Sudan People's Liberation Army (SPLA)
572                                     Sudan People's Liberation Army (SPLA)
573                                     Sudan People's Liberation Army (SPLA)
574                                     Sudan People's Liberation Army (SPLA)
575                                     Sudan People's Liberation Army (SPLA)
576                                     Sudan People's Liberation Army (SPLA)
577                                     Sudan People's Liberation Army (SPLA)
578                    Supreme Council for Islamic Revolution in Iraq (SCIRI)
579                                                            Sword of Islam
580                                                                   Taliban
581                                                                   Taliban
582                                                                   Taliban
583                                                                   Taliban
584                                                                   Taliban
585                                                                   Taliban
586                                                                   Taliban
587                                                                   Taliban
588                                                    Thai Islamic Militants
589                                                   Tuareg Guerrillas (MNJ)
590                                                           Tuaregs (ATNMC)
591                                                           Tuaregs (ATNMC)
592                                 Tupac Amaru Revolutionary Movement (MRTA)
593                                 Tupac Amaru Revolutionary Movement (MRTA)
594                                 Tupac Amaru Revolutionary Movement (MRTA)
595                                           Tupamaro Revolutionary Movement
596                                           Tupamaro Revolutionary Movement
597                                  Turkish Communist Party/Marxist (TKP-ML)
598                                  Turkish Communist Party/Marxist (TKP-ML)
599                                  Turkish Communist Party/Marxist (TKP-ML)
600                                  Turkish Communist Party/Marxist (TKP-ML)
601                                  Turkish Communist Party/Marxist (TKP-ML)
602                                                                     Tutsi
603                                                                     Tutsi
604                                                     Ummah Liberation Army
605                      Union of Forces for Democracy and Development (UFDD)
606                      Union of Forces for Democracy and Development (UFDD)
607                                  United Front for Democratic Change (FUC)
608                                   United Liberation Front of Assam (ULFA)
609                                   United Liberation Front of Assam (ULFA)
610                                   United Liberation Front of Assam (ULFA)
611                                   United Liberation Front of Assam (ULFA)
612                                   United Liberation Front of Assam (ULFA)
613                                   United Liberation Front of Assam (ULFA)
614                                   United Liberation Front of Assam (ULFA)
615                                   United Liberation Front of Assam (ULFA)
616                                   United Liberation Front of Assam (ULFA)
617                                   United Liberation Front of Assam (ULFA)
618                                   United Liberation Front of Assam (ULFA)
619                                   United Liberation Front of Assam (ULFA)
620                                   United National Liberation Front (UNLF)
621                                                                  al-Fatah
622                                                                  al-Fatah
623                                                                  al-Fatah
624                                                                  al-Fatah
625                                                                  al-Fatah
626                                              al-Gama'at al-Islamiyya (IG)
627                                              al-Gama'at al-Islamiyya (IG)
628                                              al-Gama'at al-Islamiyya (IG)
629                                              al-Gama'at al-Islamiyya (IG)
                                    ucdpgroup attacksum dyadid gwno groupsize
1                                                     2     NA   NA         0
2                                         ASG         6    249  840         1
3                                         ASG         8    249  840         1
4                                         ASG         2    249  840         1
5                                         ASG         7    249  840         1
6                                                    10     NA   NA         1
7                                         ASG        16    249  840         2
8                                         ASG        14    249  840         2
9                                         ASG        15    249  840         1
10                                        ASG         6    249  840         1
11                                        ASG         5    249  840         1
12                                        ASG         9    249  840         1
13                                        ASG         6    249  840         1
14                                        ASG         6    249  840         1
15                                                    1     NA   NA         1
16                                                    1     NA   NA         0
17                                                    1     NA   NA         0
18                                                    2     NA   NA         0
19                                                   16     NA   NA         0
20                                        AMB        42    426  666         0
21                                        AMB        16    426  666         0
22                                        AMB        15    426  666         0
23                                                   15     NA   NA         0
24                                                   14     NA   NA         0
25                                                   19     NA   NA         0
26                         Kashmir insurgents         2    355  750         2
27                         Kashmir insurgents         1    355  750         2
28                         Kashmir insurgents         2    355  750         2
29                                       AIAI         1    283  530         2
30                                       AIAI         1    283  530         2
31                         Kashmir insurgents         2    355  750         2
32                         Kashmir insurgents         1    355  750         2
33                         Kashmir insurgents         4    355  750         2
34                         Kashmir insurgents         6    355  750         2
35                         Kashmir insurgents         2    355  750         2
36                         Kashmir insurgents         1    355  750         2
37                                        ISI         6    448  645         2
38                                        ISI        49    448  645         2
39                                        ISI         5    448  645         2
40                                        ISI        34    448  645         2
41                                       AQIM        34      4   NA         1
42                                   al-Qaida         4    360   NA         2
43                                       ATTF         4    262  750         1
44                                       ATTF         2    262  750         1
45                                                    2     NA   NA         1
46                                        ADF         9    153   NA         1
47                                        ADF         9    153   NA         1
48                                        ADF         7    153   NA         1
49                                        ADF         9    153   NA         1
50                                        ADF         2    153   NA         1
51                                                    2     NA   NA         0
52                                                    4     NA   NA         1
53                             Ansar al-Islam         1    443  645         2
54                             Ansar al-Islam         2    443  645         2
55                             Ansar al-Islam         1    443  645         2
56                             Ansar al-Islam         9    443  645         2
57                             Ansar al-Islam         6    443  645         2
58                             Ansar al-Islam        10    443  645         2
59                                                    1     NA   NA         0
60                                                    1     NA   NA         0
61                                       AFRC         1     NA   NA         2
62                                       AFRC         2    131   NA         2
63               Chechen Republic of Ichkeria         1    348  365         3
64               Chechen Republic of Ichkeria         1    348  365         2
65               Chechen Republic of Ichkeria         8    348  365         3
66               Chechen Republic of Ichkeria        62    348  365         3
67               Chechen Republic of Ichkeria        82    348  365         3
68               Chechen Republic of Ichkeria        41    348  365         2
69               Chechen Republic of Ichkeria        40    348  365         2
70               Chechen Republic of Ichkeria        11    348  365         2
71               Chechen Republic of Ichkeria         3    348  365         2
72               Chechen Republic of Ichkeria         4    348  365         2
73               Chechen Republic of Ichkeria         3    348  365         2
74                                        GIA        56      3   NA         2
75                                        GIA         6      3   NA         2
76                                        GIA        10      3   NA         2
77                                        GIA        22      3   NA         2
78                                        GIA         9      3   NA         2
79                                        GIA         7      3   NA         2
80                                        GIA        15      3   NA         2
81                                        GIA        28      3   NA         2
82                                        GIA        10      3   NA         1
83                                                    2     NA   NA         1
84                                                    3     NA   NA         1
85                                                    1     NA   NA         1
86                                                    1     NA   NA         1
87                                                    1     NA   NA         1
88                                                   10     NA   NA         2
89                                        BLA        13    639  770         2
90                                        BLA         3    639  770         2
91                          Patani insurgents         3    472  800         2
92                          Patani insurgents         1    472  800         2
93                                                   28     NA   NA         1
94                                                   42     NA   NA         1
95                                                   35     NA   NA         1
96                                                    9     NA   NA         1
97                                                    3     NA   NA         1
98                                                   45     NA   NA         1
99                                                   33     NA   NA         1
100                                                  28     NA   NA         1
101                                                  11     NA   NA         1
102                                                  20     NA   NA         1
103                                                  19     NA   NA         1
104                                                  17     NA   NA         1
105                                                   6     NA   NA         1
106                         Patani insurgents         1    472  800         2
107                                       BRA         4    337   NA         2
108                                       BRA         3    337   NA         2
109                                                   1     NA   NA         0
110                                                   2     NA   NA         0
111                                                   2     NA   NA         0
112                                       BDK         1    651  490        NA
113                                CPI-Maoist         4    451   NA         2
114                                CPI-Maoist        18    451   NA         3
115                                CPI-Maoist         3    451   NA         3
116                                     CPN-M         1    349  790         2
117                                     CPN-M         5    349  790         2
118                                     CPN-M         3    349  790         2
119                                     CPN-M         1    349  790         3
120                                     CPN-M         2    349  790         3
121                                     CPN-M         3    349  790         3
122                                      RIRA         8    248  200         0
123                                                  10     NA   NA         1
124                                                  22     NA   NA         1
125                                                   9     NA   NA         1
126                                                   4     NA   NA         1
127                                                   6     NA   NA         1
128                                                   2     NA   NA         1
129                                                   6     NA   NA         1
130                                                  14     NA   NA         1
131                                                  18     NA   NA         1
132                                                  12     NA   NA         1
133                                                   6     NA   NA         1
134                                                   1     NA   NA         0
135                                                   1     NA   NA         0
136                                                   1     NA   NA         0
137                                                   2     NA   NA         0
138                                                   2     NA   NA         0
139                                                   1     NA   NA         0
140                                                   1     NA   NA         0
141                                                   2     NA   NA         0
142                                                   1     NA   NA         2
143                                       GAM         6    347  850         1
144                                       GAM        22    347  850         2
145                                       GAM        58    347  850         2
146                                       GAM         8    347  850         2
147                                       GAM         5    347  850         2
148                                       GAM         4    347  850         2
149                                       GAM         1    347  850         2
150                                                   1     NA   NA         0
151                                                   1     NA   NA         0
152                                                   4     NA   NA         0
153                                                   4     NA   NA         0
154                                                   3     NA   NA         0
155                                                   4     NA   NA         0
156                                      URNG        27    228   90         1
157                                                   4     NA   NA         2
158                                                   8     NA   NA         2
159                                                   2     NA   NA         2
160                                                   6     NA   NA         2
161                                                   4     NA   NA         2
162                                                   1     NA   NA         2
163                                     Hamas        32    381  666         2
164                                     Hamas        32    381  666         2
165                                     Hamas        35    381  666         2
166                                     Hamas        14    381  666         2
167                                     Hamas        17    381  666         2
168                                     Hamas        12    381  666         2
169                                     Hamas        38    381  666         2
170                        Kashmir insurgents         7    355  750         2
171                        Kashmir insurgents         1    355  750         2
172                        Kashmir insurgents         1    355  750         2
173                        Kashmir insurgents         1    355  750         2
174              Hizb-i Islami-yi Afghanistan         2     NA   NA         1
175                                                   1     NA   NA         1
176                                                   1     NA   NA         1
177                                                   5     NA   NA         2
178                                                   1     NA   NA         2
179                                                   3     NA   NA         2
180                                                  18     NA   NA         2
181                                                  21     NA   NA         2
182                                                   7     NA   NA         3
183                                                   1     NA   NA         3
184                                                   1     NA   NA         3
185                                                   1     NA   NA         2
186                                 Hezbollah         1    643  666         2
187                                 Hezbollah         2    643  666         2
188                                 Hezbollah         2    643  666         2
189                                 Hezbollah         2    643  666         2
190                                 Hezbollah         6    643  666         2
191                        Kashmir insurgents         1    355  750         2
192                        Kashmir insurgents         1    355  750         2
193                        Kashmir insurgents         6    355  750         2
194                        Kashmir insurgents        10    355  750         2
195                        Kashmir insurgents        11    355  750         2
196                        Kashmir insurgents         4    355  750         2
197                        Kashmir insurgents         8    355  750         2
198                        Kashmir insurgents         4    355  750         2
199                        Kashmir insurgents         4    355  750         2
200                        Kashmir insurgents         6    355  750         2
201                        Kashmir insurgents         2    355  750         2
202                                                   1     NA   NA         1
203                                                   3     NA   NA         1
204                                                   3     NA   NA         1
205                                                   3     NA   NA         1
206                                                   7     NA   NA         1
207                                                   4     NA   NA         1
208                                      RIRA        10    248  200         1
209                                                   7     NA   NA         1
210                                                   5     NA   NA         1
211                                                   1     NA   NA         1
212                                                   1     NA   NA         1
213                                                   1     NA   NA         1
214                                                   1     NA   NA         1
215                                                   3     NA   NA         1
216                                       RJF         1    578  645         2
217                                       RJF         1    578  645         2
218                                       JIG         3    444   NA        NA
219                                        IS        17    448  645         2
220                        Kashmir insurgents         5    355  750         2
221                        Kashmir insurgents         4    355  750         2
222                        Kashmir insurgents         1    355  750         2
223                        Kashmir insurgents         4    355  750         2
224                        Kashmir insurgents         1    355  750         2
225                        Kashmir insurgents         7    355  750         2
226                        Kashmir insurgents         1    355  750         2
227                                                   1     NA   NA         0
228                                                  14     NA   NA         0
229                                                   1     NA   NA         0
230                                                   1     NA   NA         0
231                        Kashmir insurgents         1    355  750         2
232                        Kashmir insurgents         2    355  750         2
233                        Kashmir insurgents         2    355  750         2
234                        Kashmir insurgents         3    355  750         2
235                        Kashmir insurgents         1    355  750         2
236                        Kashmir insurgents         6    355  750         2
237                        Kashmir insurgents         1    355  750         2
238                        Kashmir insurgents         2    355  750         2
239                                                  40     NA   NA         1
240                                                   3     NA   NA         1
241                                                   3     NA   NA         1
242                                                   1     NA   NA         1
243                                                   4     NA   NA         1
244                                 Jondullah         3    640  630         0
245                                 Jondullah         3    640  630         0
246                                       JEM         4    434  625         2
247                                  Kamajors         2    132   NA         3
248                                       KNU         1    306  775         2
249                                                   1     NA   NA         1
250                                       KNU         1    306  775         2
251                                                   2     NA   NA         1
252                                       KNU         1    306  775         2
253                                       KNU         3    306  775         2
254                                       KNU         1    306  775         2
255                                       KNU         4    306  775         2
256                                       KNU         1    306  775         2
257                        Kashmir insurgents         1    355  750         2
258                                        KR        48    364   NA         2
259                                        KR        22    364   NA         2
260                                        KR         1    364   NA         2
261                                        KR         4    364   NA         2
262                                                   2     NA   NA         2
263                                       UCK        14    295  345         2
264                                       UCK        21    295  345         3
265                                       PKK        23    333  640         3
266                                       PKK        15    333  640         3
267                                       PKK         9    333  640         2
268                                       PKK        10    333  640         2
269                                       PKK        27    333  640         2
270                                       PKK         1    333  640         2
271                                       PKK         3    333  640         2
272                                       PKK         7    333  640         2
273                                       PKK        27    333  640         2
274                                       PKK        11    333  640         2
275                                       PKK        14    333  640         2
276                                                   1     NA   NA         1
277                                                   1     NA   NA         1
278                                                   1     NA   NA         1
279                                                   1     NA   NA         1
280                                                   1     NA   NA         1
281                                                   3     NA   NA         1
282                                                   4     NA   NA         1
283                                                   1     NA   NA         1
284                                                   2     NA   NA         1
285                                                   2     NA   NA         1
286                                                   1     NA   NA         1
287                                                   1     NA   NA         1
288                        Kashmir insurgents         4    355  750         2
289                        Kashmir insurgents         9    355  750         2
290                        Kashmir insurgents        18    355  750         2
291                        Kashmir insurgents        13    355  750         2
292                        Kashmir insurgents         5    355  750         2
293                        Kashmir insurgents         4    355  750         2
294                        Kashmir insurgents         8    355  750         2
295                        Kashmir insurgents        12    355  750         2
296                        Kashmir insurgents         5    355  750         2
297                                      LTTE        59    243  780         2
298                                      LTTE       109    243  780         2
299                                      LTTE        34    243  780         2
300                                      LTTE        31    243  780         2
301                                      LTTE        35    243  780         2
302                                      LTTE        45    243  780         2
303                                      LTTE        23    243  780         2
304                                                   3     NA   NA         2
305                                      LTTE         6    243  780         2
306                                                  19     NA   NA         2
307                                      LTTE        83    243  780         3
308                                      LTTE       148    243  780         2
309                                      LTTE        82    243  780         2
310                                       LRA         4    151  500         1
311                                       LRA        15    151  500         2
312                                       LRA         5    151  500         2
313                                       LRA         6    151  500         2
314                                       LRA         9    151  500         2
315                                       LRA         9    151  500         1
316                                       LRA        18    151  500         2
317                                       LRA        20    151  500         2
318                                       LRA        10    151  500         2
319                                       LRA        11    151  500         2
320                             al-Mahdi Army         3    442  645         2
321                                                   1     NA   NA         2
322                                                   1     NA   NA         1
323                                                   5     NA   NA         1
324                                       MCC         1    406   NA         1
325                                       MCC         1    406   NA         1
326                                       MCC         2    406   NA         1
327                                       MCC         3    406   NA         1
328                                       MCC         8    406   NA         1
329                                       MCC         6    406   NA         2
330                                                   1     NA   NA         1
331                                     CPN-M         1    349  790         2
332                                     CPN-M         4    349  790         2
333                                     CPN-M        16    349  790         2
334                                     CPN-M        29    349  790         2
335                                     CPN-M         5    349  790         3
336                                     CPN-M        46    349  790         3
337                                     CPN-M        39    349  790         3
338                                     CPN-M        46    349  790         3
339                                                   1     NA   NA         2
340                                                   1     NA   NA         2
341                                       MTA         1    308  775         2
342                                                   1     NA   NA         2
343                                      MILF         4    242  840         3
344                                      MILF         7    242  840         3
345                                      MILF         2    242  840         3
346                                      MILF         5    242  840         3
347                                      MILF        67    242  840         3
348                                      MILF        13    242  840         3
349                                      MILF         6    242  840         3
350                                      MILF        61    242  840         3
351                                      MILF         4    242  840         3
352                                                   2     NA   NA         2
353                                      MILF         4    242  840         3
354                                                   2     NA   NA         2
355                                                   3     NA   NA         2
356                                                   1     NA   NA         2
357                                                   1     NA   NA         2
358                                                   2     NA   NA         2
359                                 MNLF - NM         1     NA   NA         2
360                                 MNLF - HM         1    647  840         1
361                                      MDJT         1     27   NA         2
362                                      MDJT         1     27   NA         1
363                                      MFDC         2    129  433         1
364                                      MFDC        15    129  433         1
365                                      MFDC         1    129  433         1
366                                      MFDC         2    129  433         2
367                                      MFDC         6    129  433         2
368                         Patani insurgents         1    472  800         1
369                                       MQM        90    340  770         2
370                                       MQM        16    340  770         2
371                                                   1     NA   NA         2
372                                                   2     NA   NA         2
373                                                   1     NA   NA         2
374                                                   1     NA   NA         2
375                                                   4     NA   NA         2
376                                      CNDD         1     12  516         2
377                                      CNDD         1     12  516         2
378                                  CNDD-FDD         1     14  516         3
379                                  CNDD-FDD         2     14  516         3
380                                  CNDD-FDD         1     14  516         3
381                                  CNDD-FDD        13     14  516         3
382                                      NDFB         3    313  750         1
383                                      NDFB         1    313  750         1
384                                      NDFB         8    313  750         1
385                                      NDFB         1    313  750         2
386                                      NDFB         1    313  750         2
387                                      NDFB         6    313  750         2
388                                      NDFB         6    313  750         2
389                                      NDFB         4    313  750         2
390                                      NDFB         6    313  750         2
391                                                   1     NA   NA         2
392                                       UCK        34    341  343         2
393                                       ELN        11    342   NA         2
394                                       ELN       108    342   NA         2
395                                       ELN        86    342   NA         2
396                                       ELN        35    342   NA         2
397                                       ELN        23    342   NA         2
398                                       ELN        32    342   NA         2
399                                       ELN        52    342   NA         2
400                                       ELN        11    342   NA         2
401                                       ELN        10    342   NA         2
402                                       ELN         1    342   NA         2
403                                       ELN         6    342   NA         2
404                                       ELN         4    342   NA         2
405                                      NLFT         3    269  750         1
406                                      NLFT         5    269  750         1
407                                      NLFT        15    269  750         1
408                                      NLFT         4    269  750         2
409                                      NLFT         2    269  750         2
410                                      NLFT         8    269  750         1
411                                    NLFT-B         1    269  750         1
412                                                   1     NA   NA         2
413                                 NSCN - IM         1    286  750         2
414                                                   1     NA   NA         2
415                                                   1     NA   NA         2
416                                 NSCN - IM         1    286  750         2
417                                 NSCN - IM         1    286  750         2
418                                     UNITA         4      7   NA         3
419                                                   3     NA   NA         3
420                                     UNITA        17      7   NA         3
421                                     UNITA        29      7   NA         3
422                                     UNITA        11      7   NA         3
423                                     UNITA        28      7   NA         3
424                                     UNITA         3      7   NA         3
425                                       CPP         2    217   NA         2
426                                                   1     NA   NA         3
427                                       CPP         4    217   NA         2
428                                       CPP         4    217   NA         2
429                                       CPP        12    217   NA         3
430                                       CPP         8    217   NA         3
431                                       CPP        12    217   NA         3
432                                       CPP        16    217   NA         2
433                                       CPP        10    217   NA         2
434                                       CPP         7    217   NA         3
435                                       CPP        14    217   NA         3
436                                       CPP        11    217   NA         2
437                                      ONLF         2     54  530         2
438                                       OLF         1     NA   NA         2
439                                       OLF         1     55  530         1
440                                       OLF         1     55  530         1
441                                       OLF         1     55  530         1
442                                       PIJ         2    380  666         1
443                                                   3     NA   NA         1
444                                       PIJ        19     NA   NA         1
445                                       PIJ        12    380  666         1
446                                       PIJ        13    380  666         1
447                                       PIJ        10    380  666         1
448                                       PIJ        14    380  666         1
449                                       PIJ        22    380  666         1
450                                       PIJ        28    380  666         1
451                                       PNA         1    427  666        NA
452                                       PNA        12    427  666        NA
453                                       PNA         5    427  666        NA
454                            Palipehutu-FNL         1     15  516         2
455                            Palipehutu-FNL         1     15  516         2
456                            Palipehutu-FNL         4     15  516         2
457                            Palipehutu-FNL         5     15  516         2
458                            Palipehutu-FNL        10     15  516         2
459                            Palipehutu-FNL         4     15  516         2
460                            Palipehutu-FNL         3     15  516         2
461                                                   2     NA   NA         0
462                                                   2     NA   NA         0
463                                                   1     NA   NA         0
464                         Patani insurgents         3    472  800         1
465                         Patani insurgents         1    472  800         2
466                         Patani insurgents         1    472  800         2
467                                       PLA         1    325  750        NA
468                                       PWG         5    405   NA         1
469                                       PWG         6    405   NA         1
470                                       PWG         1    405   NA         2
471                                       PWG         3    405   NA         2
472                                       PWG         8    405   NA         2
473                                       PWG        14    405   NA         2
474                                       PWG         6    405   NA         2
475                                       PWG        20    405   NA         2
476                                       PWG         2    405   NA         2
477                                                   1     NA   NA         1
478                                                   3     NA   NA         1
479                                      PFLP        11    419  666         1
480                                                   9     NA   NA         1
481                                                   3     NA   NA         1
482                                                   2     NA   NA         1
483                                                   4     NA   NA         1
484                                                   2     NA   NA         1
485                                                   1     NA   NA         0
486                                                   1     NA   NA         0
487                                                   1     NA   NA         0
488                                                   1     NA   NA         0
489                                                   2     NA   NA         0
490                                                   6     NA   NA         0
491                                       PRC         6    629  666         0
492                                                   2     NA   NA         0
493                                       EPR        10    299   NA         1
494                                                   1     NA   NA         0
495                                                   1     NA   NA         0
496                                    PBCP-J         2    839   NA         1
497                                    PBCP-J         2    839   NA         1
498                                      RIRA         4    248  200         1
499                                                   7     NA   NA         1
500                                                  10     NA   NA         1
501                                                   4     NA   NA         1
502                                                   4     NA   NA         1
503                                                   1     NA   NA         1
504                                                   2     NA   NA         1
505                                                   1     NA   NA         0
506                                                   3     NA   NA         0
507                                      FARC        38    237   NA         2
508                                      FARC        60    237   NA         2
509                                      FARC       129    237   NA         2
510                                      FARC        42    237   NA         3
511                                      FARC        44    237   NA         3
512                                      FARC        62    237   NA         3
513                                      FARC        46    237   NA         3
514                                      FARC       102    237   NA         3
515                                      FARC        57    237   NA         3
516                                      FARC        21    237   NA         3
517                                      FARC        30    237   NA         3
518                                      FARC        31    237   NA         3
519                                      FARC        18    237   NA         3
520                                  Fretilin         3    344  850         1
521                                                   1     NA   NA         0
522                                                   1     NA   NA         0
523                                                   1     NA   NA         0
524                                                   3     NA   NA         0
525                                                   2     NA   NA         0
526                                                   5     NA   NA         0
527                                                   3     NA   NA         0
528                                                   1     NA   NA         0
529                                                   1     NA   NA         0
530                                                   2     NA   NA         0
531                                                   1     NA   NA         0
532                                                   1     NA   NA         0
533                                                   2     NA   NA         0
534                                                   1     NA   NA         0
535                                                   1     NA   NA         0
536                                       RUF        10    130   NA         1
537                                       RUF         5    130   NA         2
538                                       RUF         4    130   NA         3
539                                       RUF        16    130   NA         3
540                                                   1     NA   NA         1
541                                                   3     NA   NA         1
542                                                   1     NA   NA         1
543            Forces of the Caucasus Emirate         1    773  365         1
544                                      AQIM         6      4   NA         2
545                                      AQIM        11      4   NA         1
546                                      AQIM        12      4   NA         1
547                                      AQIM         9      4   NA         1
548                                      AQIM        24      4   NA         1
549                                      AQIM        12      4   NA         1
550                                      AQIM        23      4   NA         1
551                                      AQIM        41      4   NA         1
552                                      AQIM         1     NA   NA         1
553                                                   1     NA   NA         0
554                                                   1     NA   NA         0
555                                                   2     NA   NA         0
556                          Sendero Luminoso        26    235   NA         2
557                          Sendero Luminoso        19    235   NA         2
558                          Sendero Luminoso        29    235   NA         2
559                          Sendero Luminoso         3    235   NA         2
560                          Sendero Luminoso         2    235   NA         2
561                                                   2     NA   NA         1
562                                                   2     NA   NA         1
563                                                   1     NA   NA         1
564                                                   1     NA   NA         1
565                                                   2     NA   NA         1
566                                                   1     NA   NA         1
567                                                   1     NA   NA         1
568                          Sendero Luminoso         3    235   NA         1
569                                                   2     NA   NA         1
570                                    SPLM/A         1    641  625         3
571                                    SPLM/A         2    641  625         3
572                                    SPLM/A         2    641  625         3
573                                    SPLM/A         1    641  625         3
574                                    SPLM/A         4    641  625         3
575                                                   1     NA   NA         3
576                                                   2     NA   NA         3
577                                                   2     NA   NA         3
578                                     SCIRI         1    298  645         2
579 Wahhabi movement of the Buinaksk district         1    368   NA         1
580                                   Taleban         4    327  700         3
581                                                   4     NA   NA         2
582                                                   9     NA   NA         2
583                                   Taleban        56    327  700         2
584                                   Taleban        43    327  700         2
585                                   Taleban       106    327  700         2
586                                   Taleban       142    327  700         2
587                                   Taleban       167    327  700         2
588                                                  54     NA   NA         0
589                                       MNJ         1    749   NA        NA
590                                     ATNMC         1    650  432        NA
591                                       MNJ         1    749   NA        NA
592                                                   1     NA   NA         0
593                                                   1     NA   NA         0
594                                                   4     NA   NA         0
595                                                   3     NA   NA         0
596                                                   1     NA   NA         0
597                                                   3     NA   NA         1
598                                                   1     NA   NA         1
599                                                   4     NA   NA         1
600                                                   1     NA   NA         1
601                                                   1     NA   NA         1
602                                      AFDL         1     39  490        NA
603                                       RCD         1     40  490        NA
604                                                   1     NA   NA         3
605                                      UFDD         1    634   NA        NA
606                                      UFDD         1    634   NA        NA
607                                      FUCD         3    455   NA         2
608                                      ULFA         6    296  750         2
609                                      ULFA         5    296  750         2
610                                      ULFA         6    296  750         1
611                                      ULFA         9    296  750         2
612                                      ULFA        10    296  750         2
613                                      ULFA         1    296  750         2
614                                      ULFA         2    296  750         2
615                                      ULFA         8    296  750         2
616                                      ULFA        14    296  750         2
617                                      ULFA        23    296  750         2
618                                      ULFA        25    296  750         2
619                                      ULFA        35    296  750         2
620                                      UNLF         1    336  750         1
621                                     Fatah         4    377  666         2
622                                     Fatah         1     NA   NA         2
623                                     Fatah         2    377  666         2
624                                     Fatah         1    377  666         2
625                                     Fatah        18    377  666         2
626                    al-Gama'a al-Islamiyya        80    241   NA         2
627                    al-Gama'a al-Islamiyya        34    241   NA         2
628                    al-Gama'a al-Islamiyya        13    241   NA         2
629                    al-Gama'a al-Islamiyya         2    241   NA         2
    orgage terrstrong pts_average_cat softratio_new ibex_ll ibex_lh ibex_hl
1        3          0               5    0.50000000       0       0       0
2       15          1               4    1.00000000       0       0       0
3       15          1               3    1.00000000       0       0       0
4       15          1               3    1.00000000       0       0       0
5       15          1               3    0.71428573       0       0       0
6       15          1               4    0.89999998       0       0       0
7       15          1               4    0.56250000       0       0       0
8       15          1               4    0.85714287       0       0       0
9       15          1               3    0.93333334       0       0       0
10      15          1               4    0.50000000       0       0       0
11      15          1               4    0.60000002       0       0       0
12      15          1               4    0.66666669       0       0       0
13      15          1               4    0.66666669       0       0       0
14      15          1               4    0.16666667       0       0       0
15      11          1               4    0.00000000       0       0       0
16      12          0               3    1.00000000       0       0       0
17      12          0               3    0.00000000       0       0       0
18       6          0               4    0.50000000       0       0       1
19       6          0               5    0.81250000       0       0       1
20       6          0               5    0.85000002       0       0       1
21       6          0               5    0.73333335       0       0       1
22       6          0               5    0.57142860       0       0       1
23       6          0               4    0.53333336       0       0       1
24       6          0               4    0.71428573       0       0       1
25       6          0               4    0.89473683       0       0       1
26       4          0               4    0.00000000       0       0       0
27       4          0               4    0.00000000       0       0       0
28       4          0               4    0.50000000       0       0       0
29       2          0               3    1.00000000       0       0       0
30       2          0               5    1.00000000       0       0       0
31       3          0               4    0.00000000       0       0       0
32       3          0               4    0.00000000       0       0       0
33       3          0               4    0.00000000       0       0       0
34       3          0               4    0.00000000       0       0       0
35       3          0               4    0.00000000       0       0       0
36       3          0               4    0.00000000       0       0       0
37       2          0               5    0.16666667       0       0       0
38       2          0               5    0.20408164       0       0       0
39       2          0               5    0.60000002       0       0       0
40       2          0               5    0.38235295       0       0       0
41       1          0               4    0.35294119       0       0       0
42      19          1               2    0.75000000       0       0       0
43      16          0               4    1.00000000       0       0       0
44      16          0               4    0.50000000       0       0       0
45      16          0               4    1.00000000       0       0       0
46      18          1               4    1.00000000       0       0       0
47      18          1               4    0.88888890       0       0       0
48      18          1               4    1.00000000       0       0       0
49      18          1               4    0.88888890       0       0       0
50      18          1               4    1.00000000       0       0       0
51      20          0               2    0.50000000       1       0       0
52       5          1               5    0.25000000       0       0       0
53       5          1               5    1.00000000       0       0       0
54       5          1               5    0.00000000       0       0       0
55       5          1               5    0.00000000       0       0       0
56       5          1               5    0.22222222       0       0       0
57       3          0               5    0.50000000       0       0       0
58       3          0               5    0.40000001       0       0       0
59      11          0               2    0.00000000       1       0       0
60      11          0               2    0.00000000       1       0       0
61       8          1               5    1.00000000       1       0       0
62       8          1               5    1.00000000       1       0       0
63       7          1               5    1.00000000       0       0       1
64       7          1               4    0.00000000       0       0       1
65       7          1               4    0.75000000       0       0       1
66       7          1               5    0.27419356       0       0       1
67       7          1               4    0.23999999       0       0       1
68       7          1               4    0.12195122       0       0       1
69       7          1               4    0.22222222       0       0       1
70       7          1               4    0.18181819       0       0       1
71       7          1               4    0.00000000       0       0       1
72       7          1               4    1.00000000       0       0       1
73       7          1               4    0.33333334       0       0       1
74      14          0               5    0.69090909       0       0       0
75      14          0               5    0.83333331       0       0       0
76      14          0               5    0.89999998       0       0       0
77      14          0               5    0.90909094       0       0       0
78      14          0               5    0.55555558       0       0       0
79      14          0               5    0.71428573       0       0       0
80      14          0               5    0.86666667       0       0       0
81      14          0               4    0.77777779       0       0       0
82      14          0               5    0.89999998       0       0       0
83      14          0               4    1.00000000       0       0       0
84      14          0               4    1.00000000       0       0       0
85      14          0               4    1.00000000       0       0       0
86      28          0               5    0.00000000       0       0       0
87      28          0               4    1.00000000       0       0       0
88       3          0               4    0.50000000       0       0       1
89       3          0               4    0.30769232       0       0       1
90       3          0               4    0.33333334       0       0       1
91      NA          0               4    1.00000000       0       0       1
92      NA          0               4    1.00000000       0       0       1
93      47          0               2    0.71428573       0       0       0
94      47          0               2    0.54761904       0       0       0
95      47          0               2    0.28571430       0       0       0
96      47          0               2    0.11111111       0       0       0
97      47          0               2    0.00000000       0       0       0
98      47          0               2    0.40909091       0       0       0
99      47          0               2    0.51515150       0       0       0
100     47          0               3    0.64285713       0       0       0
101     47          0               3    0.72727275       0       0       0
102     47          0               3    0.50000000       0       0       0
103     47          0               2    0.78947371       0       0       0
104     47          0               2    0.41176471       0       0       0
105     47          0               3    0.33333334       0       0       0
106     NA          0               4    1.00000000       0       0       1
107      7          1               3    0.25000000       0       0       0
108      7          1               3    1.00000000       0       0       0
109      8          0               2    0.00000000       0       0       1
110      8          0               2    0.00000000       0       0       1
111      8          0               2    0.50000000       0       0       1
112     NA         NA              NA    1.00000000       0       0       0
113      2          1               4    0.25000000       0       1       0
114      2          1               4    0.70588237       0       1       0
115      2          1               4    0.66666669       1       0       0
116     10          1               3    0.00000000       1       0       0
117     10          1               4    0.00000000       1       0       0
118     10          1               4    0.00000000       1       0       0
119     10          1               4    0.00000000       1       0       0
120     10          1               5    0.00000000       1       0       0
121     10          1               5    1.00000000       1       0       0
122     20          0               2    0.62500000       0       0       0
123     30          0               2    0.80000001       0       0       0
124     30          0               2    0.13636364       0       0       0
125     30          0               1    0.77777779       0       0       0
126     30          0               2    0.00000000       0       0       0
127     30          0               2    0.83333331       0       0       0
128     30          0               2    0.00000000       0       0       0
129     30          0               2    0.50000000       0       0       0
130     30          0               2    0.57142860       0       0       0
131     30          0               2    0.44444445       0       0       0
132     30          0               2    0.66666669       0       0       0
133     30          0               2    0.00000000       0       0       0
134     28          0               5    0.00000000       1       0       0
135     28          0               4    0.00000000       1       0       0
136     28          0               4    0.00000000       1       0       0
137     28          0               4    0.00000000       1       0       0
138     28          0               4    0.00000000       1       0       0
139     28          0               4    0.00000000       1       0       0
140     28          0               4    0.00000000       1       0       0
141     28          0               3    0.00000000       1       0       0
142     31          0               4    1.00000000       0       0       1
143     31          0               4    0.00000000       0       0       1
144     31          0               4    0.04545455       0       0       1
145     31          0               4    0.60344827       0       0       1
146     31          0               4    0.57142860       0       0       1
147     31          0               5    0.60000002       0       0       1
148     31          0               4    0.50000000       0       0       1
149     31          0               4    0.00000000       0       0       1
150     31          0               5    1.00000000       0       0       0
151     31          0               4    1.00000000       0       0       0
152     31          0               4    0.75000000       0       0       0
153     31          0               4    0.50000000       0       0       0
154     31          0               4    1.00000000       0       0       0
155     31          0               3    0.75000000       0       0       0
156     13          0               5    0.07407407       1       0       0
157     19          1               4    1.00000000       0       0       0
158     19          1               4    0.85714287       0       0       0
159     19          1               4    1.00000000       0       0       0
160     19          1               4    0.80000001       0       0       0
161     19          1               4    0.50000000       0       0       0
162     19          1               4    0.00000000       0       0       0
163     19          1               5    0.71875000       0       0       0
164     19          1               5    0.65625000       0       0       0
165     19          1               5    0.80000001       0       0       0
166     19          1               5    0.64285713       0       0       0
167     19          1               4    0.88235295       0       0       0
168     19          1               4    0.83333331       0       0       0
169     19          1               4    0.21052632       0       0       0
170      2          0               5    0.83333331       0       0       0
171      2          0               5    1.00000000       0       0       0
172      2          0               4    0.00000000       0       0       0
173      2          0               4    1.00000000       0       0       0
174     31          1               4    0.00000000       0       0       0
175     31          1               5    1.00000000       0       0       0
176     31          1               5    1.00000000       0       0       0
177     24          1               4    0.40000001       0       0       0
178     24          1               3            NA       0       0       0
179     24          1               4    0.33333334       0       0       0
180     24          1               3    0.05555556       0       0       0
181     24          1               3    0.09523810       0       0       0
182     24          1               3    0.00000000       0       0       0
183     24          1               3    1.00000000       0       0       0
184     24          1               3    0.00000000       0       0       0
185     24          1               3    0.00000000       0       0       0
186     24          1               4    1.00000000       0       0       0
187     24          1               4    1.00000000       0       0       0
188     24          1               4    1.00000000       0       0       0
189     24          1               4    1.00000000       0       0       0
190     24          1               4    0.83333331       0       0       0
191     17          1               5    0.00000000       0       0       0
192     17          1               4    1.00000000       0       0       0
193     17          1               4    0.00000000       0       0       0
194     17          1               4    0.50000000       0       0       0
195     17          1               4    0.18181819       0       0       0
196     17          1               4    0.00000000       0       0       0
197     17          1               4    0.12500000       0       0       0
198     17          1               4    0.00000000       0       0       0
199     17          1               4    0.25000000       0       0       0
200     17          1               4    0.33333334       0       0       0
201     17          1               4    0.00000000       0       0       0
202      3          0               2    0.00000000       1       0       0
203      3          0               2    0.00000000       1       0       0
204      3          0               1    0.66666669       1       0       0
205     87          0               1    1.00000000       0       0       0
206     87          0               1    0.83333331       0       0       0
207     87          0               1    0.75000000       0       0       0
208     87          0               2    0.60000002       0       0       0
209     87          0               1    0.85714287       0       0       0
210     87          0               2    0.60000002       0       0       0
211     87          0               2    0.00000000       0       0       0
212     87          0               2    0.00000000       0       0       0
213     87          0               3    0.00000000       0       0       0
214     87          0               2    0.00000000       0       0       0
215      2          0               5    0.33333334       0       0       0
216      2          0               5    0.00000000       0       0       0
217      2          0               5    0.00000000       0       0       0
218     NA         NA              NA    0.00000000       0       0       0
219      1          1               5    0.52941179       0       0       0
220      6          0               4    0.00000000       0       0       0
221      6          0               4    0.25000000       0       0       0
222      6          0               4    0.00000000       0       0       0
223      6          0               4    0.50000000       0       0       0
224      6          0               4    1.00000000       0       0       0
225      6          0               4    0.14285715       0       0       0
226      6          0               4    1.00000000       0       0       0
227      1          0               4    1.00000000       0       0       0
228      1          0               4    0.21428572       0       0       0
229      1          0               4    1.00000000       0       0       0
230      1          0               4    0.00000000       0       0       0
231     16          0               5    0.00000000       0       0       0
232     16          0               4    0.00000000       0       0       0
233     16          0               4    0.00000000       0       0       0
234     16          0               4    0.00000000       0       0       0
235     16          0               4    0.00000000       0       0       0
236     16          0               4    0.16666667       0       0       0
237     NA          0               5    1.00000000       0       0       0
238     NA          0               5    1.00000000       0       0       0
239     13          1               4    0.97435898       0       0       0
240     13          1               4    0.66666669       0       0       0
241     13          1               5    0.66666669       0       0       0
242     13          1               4    0.00000000       0       0       0
243     13          1               4    1.00000000       0       0       0
244      1          0               4    0.33333334       0       0       0
245      1          0               4    0.66666669       0       0       0
246      3          1               5    0.75000000       0       0       0
247      1          0               5    0.50000000       0       0       0
248     47          1               5    0.00000000       0       0       1
249     47          1               4    1.00000000       0       0       1
250     47          1               5    0.00000000       0       0       1
251     47          1               4    0.50000000       0       0       1
252     47          1               4    1.00000000       0       0       1
253     47          1               4    0.66666669       0       0       1
254     47          1               4    1.00000000       0       0       1
255     47          1               4    0.75000000       0       0       1
256     47          1               5    0.00000000       0       0       1
257     NA          0               4    0.00000000       0       0       0
258     27          0               4    1.00000000       1       0       0
259     27          0               4    0.90909094       1       0       0
260     27          0               4    0.00000000       1       0       0
261     27          0               4    0.50000000       1       0       0
262     14          0               3    0.00000000       0       0       0
263     14          0               5    0.42857143       0       0       0
264     14          0               5    0.76190478       0       0       0
265     32          0               5    0.56521738       0       0       0
266     32          0               4    0.53333336       0       0       0
267     32          0               4    0.44444445       0       0       0
268     32          0               4    0.60000002       0       0       0
269     32          0               4    0.42307693       0       0       0
270     32          0               4    1.00000000       0       0       0
271     32          0               3    0.33333334       0       0       0
272     32          0               3    0.16666667       0       0       0
273     32          0               4    0.37037036       0       0       0
274     32          0               4    0.45454547       0       0       0
275     32          0               4    0.50000000       0       0       0
276     10          0               4    1.00000000       0       0       0
277     10          0               4    1.00000000       0       0       0
278     10          0               5    1.00000000       0       0       0
279     10          0               4    0.00000000       0       0       0
280     10          0               4    1.00000000       0       0       0
281     10          0               4    0.00000000       0       0       0
282     10          0               4    0.75000000       0       0       0
283     10          0               4    1.00000000       0       0       0
284     10          0               4    1.00000000       0       0       0
285     10          0               4    1.00000000       0       0       0
286      5          0               4    1.00000000       0       0       0
287      5          0               4    0.00000000       0       0       0
288      6          0               4    0.00000000       0       0       0
289      6          0               4    0.22222222       0       0       0
290      6          0               4    0.38888890       0       0       0
291      6          0               4    0.38461539       0       0       0
292      6          0               4    1.00000000       0       0       0
293      6          0               4    1.00000000       0       0       0
294      6          0               4    0.62500000       0       0       0
295      6          0               4    0.50000000       0       0       0
296      6          0               4    0.40000001       0       0       0
297     30          1               5    0.31034482       0       0       0
298     30          1               5    0.41904762       0       0       0
299     30          1               4    0.34375000       0       0       0
300     30          1               4    0.25806451       0       0       0
301     30          1               4    0.17142858       0       0       0
302     30          1               5    0.22222222       0       0       0
303     30          1               4    0.34782609       0       0       0
304     30          1               3    0.66666669       0       0       0
305     30          1               3    0.00000000       0       0       0
306     30          1               4    0.36842105       0       0       0
307     30          1               5    0.34146342       0       0       0
308     30          1               5    0.40816328       0       0       0
309     30          1               5    0.55000001       0       0       0
310     14          1               4    1.00000000       0       0       0
311     14          1               4    0.86666667       0       0       0
312     14          1               4    0.80000001       0       0       0
313     14          1               4    0.83333331       0       0       0
314     14          1               4    0.77777779       0       0       0
315     14          1               4    0.88888890       0       0       0
316     14          1               4    0.88888890       0       0       0
317     14          1               4    0.89999998       0       0       0
318     14          1               4    1.00000000       0       0       0
319     14          1               5    0.90909094       0       0       0
320      3          1               5    0.66666669       0       0       1
321      3          1               5    1.00000000       0       0       1
322     37          1               5    0.00000000       1       0       0
323     37          1               4    0.40000001       1       0       0
324     37          1               4    1.00000000       1       0       0
325     37          1               4    1.00000000       1       0       0
326     37          1               4    0.50000000       1       0       0
327     37          1               4    0.66666669       1       0       0
328     37          1               4    0.50000000       1       0       0
329     37          1               4    0.00000000       1       0       0
330     37          1               4    0.00000000       1       0       0
331     NA          1               3    0.00000000       1       0       0
332     NA          1               4    0.00000000       1       0       0
333     NA          1               4    0.25000000       1       0       0
334     NA          1               5    0.41379312       1       0       0
335     NA          1               4    0.20000000       1       0       0
336     NA          1               5    0.36956522       1       0       0
337     NA          1               5    0.53846157       1       0       0
338     NA          1               5    0.53333336       1       0       0
339     13          1               5    1.00000000       0       1       0
340     13          1               5    1.00000000       0       1       0
341     10          1               5    1.00000000       0       0       1
342     28          1               4    0.00000000       0       0       0
343     28          1               3    0.50000000       0       0       0
344     28          1               3    1.00000000       0       0       0
345     28          1               3    0.50000000       0       0       0
346     28          1               4    0.60000002       0       0       0
347     28          1               4    0.62686568       0       0       0
348     28          1               4    0.61538464       0       0       0
349     28          1               3    0.66666669       0       0       1
350     28          1               4    0.49180329       0       0       1
351     28          1               4    0.25000000       0       0       1
352     28          1               4    0.50000000       0       0       1
353     28          1               4    0.50000000       0       0       1
354     34          1               4    1.00000000       0       0       0
355     34          1               3    0.66666669       0       0       0
356     34          1               3    1.00000000       0       0       0
357     34          1               4    1.00000000       0       0       0
358     34          1               4    1.00000000       0       0       0
359     34          1               4    0.00000000       0       0       0
360     34          1               4    0.00000000       0       0       0
361      4          1               4    0.00000000       1       0       0
362      4          1               3    0.00000000       1       0       0
363     13          1               4    0.00000000       0       0       0
364     13          1               3    0.53333336       0       0       0
365     13          1               4    1.00000000       0       0       0
366     13          1               3    0.00000000       0       0       0
367     13          1               3    1.00000000       0       0       0
368     NA          0               4    1.00000000       0       0       1
369      5          0               5    0.74157304       0       0       1
370      5          0               4    0.81250000       0       0       1
371      5          0               4    1.00000000       0       0       0
372      5          0               5    0.00000000       0       0       0
373      5          0               4    0.00000000       0       0       0
374      5          0               4    1.00000000       0       0       0
375      5          0               4    1.00000000       0       0       0
376      1          0               5    0.00000000       0       0       0
377      1          0               5    1.00000000       0       0       0
378      1          0               5    0.00000000       0       0       0
379      1          0               5    0.50000000       0       0       0
380      1          0               5    1.00000000       0       0       0
381      1          0               4    0.53846157       0       0       1
382     18          0               5    0.66666669       0       0       0
383     18          0               5    1.00000000       0       0       0
384     18          0               4    1.00000000       0       0       0
385     18          0               4    1.00000000       0       0       0
386     18          0               4    0.00000000       0       0       0
387     18          0               4    0.50000000       0       0       0
388     18          0               4    0.83333331       0       0       0
389     18          0               4    0.75000000       0       0       0
390     18          0               4    0.83333331       0       0       0
391     18          0               4    0.00000000       0       0       0
392      1          0               4    0.23529412       0       0       0
393     42          1               5    0.36363637       1       0       0
394     42          1               5    0.41509435       1       0       0
395     42          1               5    0.40000001       1       0       0
396     42          1               5    0.00000000       1       0       0
397     42          1               5    0.65217394       1       0       0
398     42          1               5    0.50000000       1       0       0
399     42          1               5    0.73076922       1       0       0
400     42          1               5    0.45454547       1       0       0
401     42          1               5    0.69999999       1       0       0
402     42          1               5    1.00000000       1       0       0
403     42          1               5    0.66666669       1       0       0
404     42          1               5    0.50000000       1       0       0
405     17          0               4    0.33333334       0       0       0
406     17          0               4    0.40000001       0       0       0
407     17          0               4    0.60000002       0       0       0
408     17          0               4    0.25000000       0       0       0
409     17          0               4    1.00000000       0       0       0
410     17          0               4    0.50000000       0       0       1
411     17          0               4    0.00000000       0       0       0
412     17          0               4    1.00000000       0       0       0
413     18          0               4    0.00000000       0       0       0
414     18          0               4    1.00000000       0       0       0
415     18          0               4    0.00000000       0       0       0
416     15          0               5    0.00000000       0       0       1
417     15          0               5    1.00000000       0       0       0
418     40          1               5    1.00000000       0       1       0
419     40          1               4    0.66666669       0       1       0
420     40          1               5    0.64705884       0       1       0
421     40          1               5    0.62068963       0       1       0
422     40          1               5    0.89999998       0       1       0
423     40          1               5    0.78571427       0       1       0
424     40          1               4    1.00000000       0       1       0
425     37          1               4    1.00000000       1       0       0
426     37          1               3    0.00000000       1       0       0
427     37          1               3    0.00000000       1       0       0
428     37          1               4    0.25000000       1       0       0
429     37          1               4    0.50000000       1       0       0
430     37          1               4    0.37500000       1       0       0
431     37          1               3    0.33333334       1       0       0
432     37          1               4    0.37500000       1       0       0
433     37          1               4    0.10000000       1       0       0
434     37          1               4    0.00000000       1       0       0
435     37          1               4    0.35714287       1       0       0
436     37          1               4    0.18181819       1       0       0
437     11          0               4    0.50000000       0       0       0
438      6          0               5    1.00000000       0       0       0
439      6          0               4    1.00000000       0       0       0
440      6          0               4    1.00000000       0       0       0
441      6          0               4    1.00000000       0       0       0
442     29          0               4    0.50000000       0       0       0
443     29          0               4    0.33333334       0       0       0
444     29          0               5    0.84210527       0       0       0
445     29          0               5    0.81818181       0       0       0
446     29          0               5    0.66666669       0       0       0
447     29          0               5    0.69999999       0       0       0
448     29          0               4    0.64285713       0       0       0
449     29          0               4    0.90909094       0       0       0
450     29          0               4    0.89285713       0       0       0
451     NA         NA              NA    1.00000000       0       0       1
452     NA         NA              NA    0.83333331       0       0       1
453     NA         NA              NA    0.80000001       0       0       1
454     15          0               5    1.00000000       0       0       0
455     15          0               5    1.00000000       0       0       0
456     15          0               5    0.75000000       0       0       0
457     15          0               5    0.40000001       0       0       0
458     15          0               4    0.40000001       0       0       0
459     15          0               5    0.75000000       0       0       0
460     15          0               4    1.00000000       0       0       0
461     38          0               3    1.00000000       0       0       1
462     38          0               3    0.00000000       0       0       1
463     38          0               3    1.00000000       0       0       1
464     38          0               3    0.00000000       0       0       1
465     38          0               4    0.00000000       0       0       1
466     38          0               4    0.00000000       0       0       1
467     17          0               4    0.00000000       0       0       1
468     26          1               5    0.20000000       1       0       0
469     26          1               4    0.33333334       1       0       0
470     26          1               4    0.00000000       1       0       0
471     26          1               4    0.33333334       1       0       0
472     26          1               4    0.12500000       1       0       0
473     26          1               4    0.07142857       1       0       0
474     26          1               4    0.66666669       1       0       0
475     26          1               4    0.30000001       1       0       0
476     26          1               4    0.00000000       1       0       0
477     39          0               4    1.00000000       0       0       1
478     39          0               4    0.66666669       0       0       1
479     39          0               5    0.72727275       0       0       1
480     39          0               5    0.77777779       0       0       1
481     39          0               5    0.33333334       0       0       1
482     39          0               5    0.50000000       0       0       1
483     39          0               4    0.75000000       0       0       1
484     39          0               4    1.00000000       0       0       1
485      6          0               4    1.00000000       0       0       0
486      6          0               5    1.00000000       0       0       0
487      6          0               5    0.00000000       0       0       0
488      6          0               5    0.00000000       0       0       0
489      6          0               5    1.00000000       0       0       0
490      6          0               4    0.50000000       0       0       0
491      6          0               4    1.00000000       0       0       0
492      6          0               4    1.00000000       0       0       0
493     10          0               4    0.50000000       1       0       0
494      1          0               2    1.00000000       1       0       0
495      1          0               2    0.00000000       1       0       0
496      3          1               4    0.00000000       1       0       0
497      3          1               4    0.00000000       1       0       0
498      8          0               2    0.66666669       0       0       0
499      8          0               2    0.28571430       0       0       0
500      8          0               2    0.40000001       0       0       0
501      8          0               2    0.00000000       0       0       0
502      8          0               2    0.00000000       0       0       0
503      8          0               2    1.00000000       0       0       0
504      8          0               2    0.00000000       0       0       0
505     37          0               2    0.00000000       1       0       0
506     37          0               2    0.00000000       1       0       0
507     42          1               5    0.28947368       1       0       0
508     42          1               5    0.37288135       1       0       0
509     42          1               5    0.61240309       1       0       0
510     42          1               5    0.14285715       1       0       0
511     42          1               5    0.52272725       1       0       0
512     42          1               5    0.51612902       1       0       0
513     42          1               5    0.43478259       1       0       0
514     42          1               5    0.34653464       1       0       0
515     42          1               5    0.29824561       1       0       0
516     42          1               5    0.64999998       1       0       0
517     42          1               5    0.33333334       1       0       0
518     42          1               5    0.41935483       0       1       0
519     42          1               4    0.33333334       1       0       0
520     21          0               4    1.00000000       0       0       1
521      6          0               2    0.00000000       1       0       0
522     32          0               2    1.00000000       1       0       0
523     32          0               2    0.00000000       1       0       0
524     32          0               2    0.66666669       1       0       0
525     32          0               2    0.50000000       1       0       0
526     32          0               2    0.80000001       1       0       0
527      5          0               1    0.00000000       1       0       0
528      5          0               1    0.00000000       1       0       0
529     10          0               2    1.00000000       1       0       0
530     10          0               2    0.00000000       1       0       0
531     10          0               2    0.00000000       1       0       0
532     10          0               2    0.00000000       1       0       0
533     10          0               2    0.00000000       1       0       0
534     10          0               3    0.00000000       1       0       0
535     10          0               3    0.00000000       1       0       0
536     15          1               4    0.80000001       0       1       0
537     15          1               5    0.80000001       0       1       0
538     15          1               5    1.00000000       0       1       0
539     15          1               5    0.50000000       0       1       0
540      4          0               4    1.00000000       0       0       0
541      4          0               4    0.33333334       0       0       0
542      4          0               4    0.00000000       0       0       0
543      4          0               4    1.00000000       0       0       0
544     10          0               5    0.66666669       0       0       0
545     10          0               5    0.36363637       0       0       0
546     10          0               5    0.50000000       0       0       0
547     10          0               4    0.33333334       0       0       0
548     10          0               5    0.50000000       0       0       0
549     10          0               4    0.36363637       0       0       0
550     10          0               4    0.38095239       0       0       0
551     10          0               4    0.57499999       0       0       0
552     10          0               4    0.00000000       0       0       0
553      4          0               2    1.00000000       0       0       0
554      4          0               4    0.00000000       0       0       0
555      4          0               4    0.50000000       0       0       0
556     39          1               4    0.42307693       1       0       0
557     39          1               4    0.73684210       1       0       0
558     39          1               4    0.75000000       1       0       0
559     39          1               3    0.66666669       1       0       0
560     39          1               4    0.50000000       1       0       0
561     39          1               3    1.00000000       1       0       0
562     39          1               2    0.00000000       1       0       0
563     39          1               3    0.00000000       1       0       0
564     39          1               3    0.00000000       1       0       0
565     39          1               3    0.00000000       1       0       0
566     39          1               3    0.00000000       1       0       0
567     39          1               3    0.00000000       1       0       0
568     39          1               2    0.33333334       1       0       0
569     14          0               3    0.00000000       1       0       0
570     23          1               5    0.00000000       0       0       0
571     23          1               5    1.00000000       0       0       0
572     23          1               5    1.00000000       0       0       0
573     23          1               5    1.00000000       0       0       1
574     23          1               5    0.50000000       0       0       1
575     23          1               5    0.00000000       0       0       1
576     23          1               5    0.00000000       0       0       1
577     23          1               5    1.00000000       0       0       1
578     13          0               5    0.00000000       0       0       0
579      8          0               4    0.00000000       0       0       0
580     12          1               5    0.00000000       0       0       1
581     12          1               5    0.50000000       0       0       1
582     12          1               5    0.55555558       0       0       1
583     12          1               4    0.49090910       0       0       1
584     12          1               5    0.39534885       0       0       0
585     12          1               5    0.43396226       0       0       0
586     12          1               5    0.29577464       0       0       0
587     12          1               5    0.32317072       0       0       0
588     17          0               4    0.68518519       0       0       0
589     NA         NA              NA    1.00000000       0       0       0
590     NA         NA              NA    0.00000000       0       0       0
591     NA         NA              NA    1.00000000       0       0       0
592     23          0               4    0.00000000       1       0       0
593     23          0               4    0.00000000       1       0       0
594     23          0               4    1.00000000       1       0       0
595      8          0               3    0.00000000       1       0       0
596      8          0               3    1.00000000       1       0       0
597     34          0               4    0.66666669       1       0       0
598     34          0               4    0.00000000       1       0       0
599     34          0               4    0.50000000       1       0       0
600     34          0               4    0.00000000       1       0       0
601     34          0               3    0.00000000       1       0       0
602     NA         NA              NA    1.00000000       0       0       0
603     NA         NA              NA    1.00000000       0       0       0
604      7          0               5    0.00000000       1       0       0
605      1          0               4    1.00000000       0       1       0
606      1          0               4    1.00000000       0       1       0
607      1          0               4    0.66666669       0       1       0
608     27          0               5    0.00000000       0       0       1
609     27          0               4    0.00000000       0       0       1
610     27          0               4    0.00000000       0       0       1
611     27          0               4    0.33333334       0       0       0
612     27          0               4    0.80000001       0       0       0
613     27          0               4    0.00000000       0       0       0
614     27          0               4    0.50000000       0       0       0
615     27          0               4    0.37500000       0       0       0
616     27          0               4    0.69230771       0       0       0
617     27          0               4    0.39130434       0       0       0
618     27          0               4    0.40000001       0       0       0
619     27          0               4    0.68571430       0       0       0
620     42          1               4    0.00000000       0       0       1
621     49          1               5    0.75000000       0       0       1
622     49          1               5    1.00000000       0       0       0
623     49          1               4    0.50000000       0       0       1
624     49          1               4    0.00000000       0       0       1
625     49          1               4    0.33333334       0       0       1
626     29          0               4    0.32499999       0       0       0
627     29          0               4    0.36363637       0       0       0
628     29          0               4    0.38461539       0       0       0
629     29          0               3    0.50000000       0       0       0
    ibex_hm ibex_hh  id cw_year cw_group cw_country ext_supp ib ter_militia
1         1       0   2       0        0          1        0  1           0
2         0       1   5       1        1          1        1  1           0
3         0       1   5       1        1          1        1  1           0
4         0       1   5       1        1          1        1  1           0
5         0       1   5       1        1          1        1  1           0
6         0       1   5       0        1          1        1  1           0
7         0       1   5       1        1          1        1  1           0
8         0       1   5       1        1          1        1  1           0
9         0       1   5       1        1          1        1  1           0
10        0       1   5       1        1          1        1  1           0
11        0       1   5       1        1          1        1  1           0
12        0       1   5       1        1          1        1  1           0
13        0       1   5       1        1          1        1  1           0
14        0       1   5       1        1          1        1  1           0
15        1       0   6       0        0          1        0  1           0
16        0       1   7       0        0          0        1  1           0
17        0       1   7       0        0          0        1  1           0
18        0       0   8       0        1          1        0  1           0
19        0       0   8       0        1          1        0  1           0
20        0       0   8       1        1          1        0  1           0
21        0       0   8       1        1          1        0  1           0
22        0       0   8       1        1          1        0  1           0
23        0       0   8       0        1          1        0  1           0
24        0       0   8       0        1          1        0  1           0
25        0       0   8       0        1          1        0  1           0
26        1       0   9       1        1          1        0  1           0
27        1       0   9       1        1          1        0  1           0
28        1       0   9       1        1          1        0  1           0
29        0       1  11       1        1          1        1  1           0
30        1       0  11       1        1          1        0  1           0
31        1       0  13       1        1          1        0  1           0
32        1       0  13       1        1          1        0  1           0
33        1       0  13       1        1          1        0  1           0
34        1       0  13       1        1          1        0  1           0
35        1       0  13       1        1          1        0  1           0
36        1       0  13       1        1          1        0  1           0
37        1       0  16       1        1          1        0  1           0
38        1       0  16       1        1          1        0  1           0
39        1       0  16       1        1          1        0  1           0
40        1       0  16       1        1          1        0  1           4
41        1       0  18       1        1          1        0  1           2
42        0       1  15       1        1          1        1  1           0
43        0       1  22       1        1          1        1  1           0
44        0       1  22       1        1          1        1  1           0
45        0       1  22       0        1          1        1  1           0
46        0       1  23       1        1          1        1  1           0
47        0       1  23       1        1          1        1  1           0
48        0       1  23       1        1          1        1  1           0
49        1       0  23       1        1          1        0  1           0
50        1       0  23       1        1          1        0  1           0
51        0       0  29       0        0          0        0  0           0
52        1       0  31       0        1          0        0  1           0
53        1       0  31       1        1          1        0  1           0
54        1       0  31       1        1          1        0  1           0
55        1       0  31       1        1          1        0  1           0
56        1       0  31       1        1          1        0  1           0
57        1       0  33       1        1          1        0  1           0
58        1       0  33       1        1          1        0  1           0
59        0       0  35       0        0          0        0  0           0
60        0       0  35       0        0          0        0  0           0
61        0       0  42       1        1          1        0  0           0
62        0       0  42       1        1          1        0  0           0
63        0       0  43       1        1          1        0  1           0
64        0       0  43       1        1          1        0  1           0
65        0       0  43       1        1          1        0  1           0
66        0       0  43       1        1          1        0  1           0
67        0       0  43       1        1          1        0  1           1
68        0       0  43       1        1          1        0  1           0
69        0       0  43       1        1          1        0  1           0
70        0       0  43       1        1          1        0  1           0
71        0       0  43       1        1          1        0  1           0
72        0       0  43       1        1          1        0  1           0
73        0       0  43       1        1          1        0  1           0
74        0       1  44       1        1          1        1  1           0
75        1       0  44       1        1          1        0  1           0
76        0       1  44       1        1          1        1  1           1
77        1       0  44       1        1          1        0  1           0
78        1       0  44       1        1          1        0  1           0
79        1       0  44       1        1          1        0  1           0
80        1       0  44       1        1          1        0  1           0
81        1       0  44       1        1          1        0  1           0
82        1       0  44       1        1          1        0  1           0
83        1       0  44       0        1          1        0  1           0
84        1       0  44       0        1          1        0  1           0
85        1       0  44       0        1          1        0  1           0
86        0       0  49       0        0          1        0  1           0
87        0       0  49       0        0          1        0  1           0
88        0       0  50       0        1          0        0  1           0
89        0       0  50       1        1          1        0  1           0
90        0       0  50       1        1          1        0  1           0
91        0       0  53       1        1          1        0  1           0
92        0       0  53       1        1          1        0  1           0
93        1       0  54       0        0          0        0  1           0
94        1       0  54       0        0          0        0  1           0
95        1       0  54       0        0          0        0  1           0
96        1       0  54       0        0          0        0  1           0
97        1       0  54       0        0          0        0  1           0
98        1       0  54       0        0          0        0  1           0
99        1       0  54       0        0          0        0  1           0
100       1       0  54       0        0          0        0  1           0
101       1       0  54       0        0          0        0  1           0
102       1       0  54       0        0          0        0  1           0
103       1       0  54       0        0          0        0  1           0
104       1       0  54       0        0          0        0  1           0
105       1       0  54       0        0          0        0  1           0
106       0       0  55       1        1          1        0  1           0
107       1       0  58       1        1          1        0  1           0
108       1       0  58       1        1          1        0  1           0
109       0       0  59       0        0          0        0  1           0
110       0       0  59       0        0          0        0  1           0
111       0       0  59       0        0          0        0  1           0
112       1       0  61       1        1          1        0  1           0
113       0       0  69       1        1          1        1  0           0
114       0       0  69       1        1          1        1  0           0
115       0       0  69       1        1          1        0  0           0
116       0       0  70       1        1          1        0  0           0
117       0       0  70       1        1          1        0  0           0
118       0       0  70       1        1          1        0  0           0
119       0       0  70       1        1          1        0  0           0
120       0       0  70       1        1          1        0  0           0
121       0       0  70       1        1          1        0  0           0
122       1       0  72       1        1          1        0  1           0
123       1       0  73       0        0          0        0  1           0
124       1       0  73       0        0          0        0  1           0
125       1       0  73       0        0          0        0  1           0
126       1       0  73       0        0          0        0  1           0
127       1       0  73       0        0          0        0  1           0
128       1       0  73       0        0          0        0  1           0
129       1       0  73       0        0          0        0  1           0
130       1       0  73       0        0          0        0  1           0
131       1       0  73       0        0          0        0  1           0
132       1       0  73       0        0          0        0  1           0
133       1       0  73       0        0          0        0  1           0
134       0       0  75       0        0          1        0  0           0
135       0       0  75       0        0          1        0  0           0
136       0       0  75       0        0          1        0  0           0
137       0       0  75       0        0          1        0  0           0
138       0       0  75       0        0          1        0  0           0
139       0       0  75       0        0          1        0  0           0
140       0       0  75       0        0          1        0  0           0
141       0       0  75       0        0          1        0  0           0
142       0       0  82       0        1          0        0  1           0
143       0       0  82       1        1          1        0  1           0
144       0       0  82       1        1          1        0  1           0
145       0       0  82       1        1          1        0  1           0
146       0       0  82       1        1          1        0  1           0
147       0       0  82       1        1          1        0  1           0
148       0       0  82       1        1          1        0  1           0
149       0       0  82       1        1          1        0  1           0
150       1       0  89       0        0          1        0  1           0
151       1       0  89       0        0          1        0  1           0
152       1       0  89       0        0          1        0  1           0
153       1       0  89       0        0          1        0  1           0
154       1       0  89       0        0          1        0  1           0
155       0       1  89       0        0          1        1  1           0
156       0       0  90       1        1          1        0  0           0
157       1       0  91       0        1          1        0  1           0
158       1       0  91       0        1          1        0  1           0
159       1       0  91       0        1          1        0  1           0
160       1       0  91       0        1          1        0  1           0
161       1       0  91       0        1          1        0  1           0
162       1       0  91       0        1          1        0  1           0
163       1       0  91       1        1          1        0  1           0
164       1       0  91       1        1          1        0  1           0
165       1       0  91       1        1          1        0  1           0
166       1       0  91       1        1          1        0  1           0
167       1       0  91       1        1          1        0  1           0
168       1       0  91       1        1          1        0  1           0
169       1       0  91       1        1          1        0  1           2
170       1       0  93       1        1          1        0  1           0
171       1       0  93       1        1          1        0  1           0
172       1       0  93       1        1          1        0  1           0
173       1       0  93       1        1          1        0  1           0
174       0       1  94       1        1          1        1  1           0
175       0       1  94       0        1          1        1  1           0
176       0       1  94       0        1          1        1  1           0
177       1       0  95       0        0          0        0  1           0
178       1       0  95       0        0          0        0  1           0
179       1       0  95       0        0          0        0  1           0
180       1       0  95       0        0          0        0  1           4
181       1       0  95       0        0          0        0  1           7
182       1       0  95       0        0          0        0  1           5
183       1       0  95       0        0          0        0  1           0
184       1       0  95       0        0          0        0  1           0
185       1       0  95       0        0          0        0  1           0
186       0       1  95       1        1          1        1  1           0
187       0       1  95       1        1          1        1  1           0
188       0       1  95       1        1          1        1  1           0
189       0       1  95       1        1          1        1  1           0
190       0       1  95       1        1          1        1  1           0
191       1       0  96       1        1          1        0  1           0
192       1       0  96       1        1          1        0  1           0
193       1       0  96       1        1          1        0  1           0
194       1       0  96       1        1          1        0  1           0
195       1       0  96       1        1          1        0  1           0
196       1       0  96       1        1          1        0  1           0
197       1       0  96       1        1          1        0  1           0
198       1       0  96       1        1          1        0  1           0
199       1       0  96       1        1          1        0  1           0
200       1       0  96       1        1          1        0  1           0
201       1       0  96       1        1          1        0  1           0
202       0       0  98       0        0          0        0  0           0
203       0       0  98       0        0          0        0  0           0
204       0       0  98       0        0          0        0  0           0
205       1       0 101       0        1          0        0  1           0
206       1       0 101       0        1          0        0  1           0
207       1       0 101       0        1          0        0  1           0
208       1       0 101       1        1          1        0  1           0
209       1       0 101       0        1          0        0  1           0
210       1       0 101       0        1          0        0  1           1
211       1       0 101       0        1          0        0  1           0
212       1       0 101       0        1          0        0  1           0
213       1       0 101       0        1          0        0  1           0
214       1       0 101       0        1          0        0  1           0
215       1       0 102       0        1          1        0  1           0
216       1       0 102       1        1          1        0  1           0
217       1       0 102       1        1          1        0  1           0
218       1       0 104       1        1          1        0  1           0
219       1       0 106       1        1          1        0  1           1
220       1       0 109       1        1          1        0  1           0
221       1       0 109       1        1          1        0  1           0
222       1       0 109       1        1          1        0  1           0
223       1       0 109       1        1          1        0  1           0
224       1       0 109       1        1          1        0  1           0
225       1       0 109       1        1          1        0  1           0
226       1       0 109       1        1          1        0  1           0
227       0       1 110       0        0          0        1  1           0
228       0       1 110       0        0          1        1  1           0
229       0       1 110       0        0          1        1  1           0
230       0       1 110       0        0          0        1  1           0
231       1       0 112       1        1          1        0  1           0
232       1       0 112       1        1          1        0  1           0
233       1       0 112       1        1          1        0  1           0
234       1       0 112       1        1          1        0  1           0
235       1       0 112       1        1          1        0  1           0
236       1       0 112       1        1          1        0  1           0
237       1       0 113       1        1          1        0  1           0
238       1       0 113       1        1          1        0  1           0
239       0       1 115       0        0          1        1  1           0
240       0       1 115       0        0          1        1  1           0
241       0       1 115       0        0          1        1  1           0
242       0       1 115       0        0          1        1  1           0
243       0       1 115       0        0          1        1  1           0
244       1       0 117       1        1          1        0  1           0
245       1       0 117       1        1          1        0  1           0
246       1       0 119       1        1          1        0  1           0
247       1       0 121       1        1          1        0  1           0
248       0       0 124       1        1          1        0  1           0
249       0       0 124       0        1          1        0  1           0
250       0       0 124       1        1          1        0  1           0
251       0       0 124       0        1          1        0  1           0
252       0       0 124       1        1          1        0  1           0
253       0       0 124       1        1          1        0  1           0
254       0       0 124       1        1          1        0  1           0
255       0       0 124       1        1          1        0  1           0
256       0       0 124       1        1          1        0  1           1
257       1       0 125       1        1          1        0  1           0
258       0       0 126       1        1          1        0  0           0
259       0       0 126       1        1          1        0  0           0
260       0       0 126       1        1          1        0  0           0
261       0       0 126       1        1          1        0  0           0
262       1       0 127       0        0          0        0  1           0
263       1       0 127       1        1          1        0  1           0
264       1       0 127       1        1          1        0  1           0
265       1       0 130       1        1          1        0  1           0
266       1       0 130       1        1          1        0  1           0
267       1       0 130       1        1          1        0  1           0
268       1       0 130       1        1          1        0  1           0
269       1       0 130       1        1          1        0  1           0
270       1       0 130       1        1          1        0  1           0
271       1       0 130       1        1          1        0  1           0
272       1       0 130       1        1          1        0  1           0
273       1       0 130       1        1          1        0  1           0
274       1       0 130       1        1          1        0  1           0
275       1       0 130       1        1          1        0  1           0
276       0       1 131       0        0          1        1  1           0
277       0       1 131       0        0          0        1  1           0
278       0       1 131       0        0          0        1  1           0
279       0       1 131       0        0          0        1  1           0
280       0       1 131       0        0          0        1  1           0
281       0       1 131       0        0          0        1  1           0
282       0       1 131       0        0          0        1  1           0
283       0       1 131       0        0          1        1  1           0
284       0       1 131       0        0          0        1  1           0
285       0       1 131       0        0          1        1  1           0
286       1       0 132       0        0          0        0  1           0
287       1       0 132       0        0          0        0  1           0
288       1       0 133       1        1          1        0  1           0
289       1       0 133       1        1          1        0  1           0
290       1       0 133       1        1          1        0  1           0
291       1       0 133       1        1          1        0  1           0
292       1       0 133       1        1          1        0  1           0
293       1       0 133       1        1          1        0  1           0
294       1       0 133       1        1          1        0  1           0
295       1       0 133       1        1          1        0  1           0
296       1       0 133       1        1          1        0  1           0
297       1       0 135       1        1          1        0  1           0
298       1       0 135       1        1          1        0  1           2
299       1       0 135       1        1          1        0  1           1
300       1       0 135       1        1          1        0  1           0
301       1       0 135       1        1          1        0  1           0
302       1       0 135       1        1          1        0  1           0
303       1       0 135       1        1          1        0  1           1
304       1       0 135       0        1          0        0  1           0
305       1       0 135       1        1          1        0  1           0
306       1       0 135       0        1          0        0  1           0
307       1       0 135       1        1          1        0  1           4
308       1       0 135       1        1          1        0  1           1
309       1       0 135       1        1          1        0  1           0
310       0       1 136       1        1          1        1  1           0
311       0       1 136       1        1          1        1  1           0
312       0       1 136       1        1          1        1  1           0
313       0       1 136       1        1          1        1  1           0
314       0       1 136       1        1          1        1  1           0
315       0       1 136       1        1          1        1  1           0
316       1       0 136       1        1          1        0  1           0
317       1       0 136       1        1          1        0  1           0
318       1       0 136       1        1          1        0  1           0
319       0       1 136       1        1          1        1  1           0
320       0       0 139       1        1          1        0  1           0
321       0       0 139       0        1          1        0  1           0
322       0       0 140       0        1          1        0  0           0
323       0       0 140       0        1          1        0  0           0
324       0       0 140       1        1          1        0  0           0
325       0       0 140       1        1          1        0  0           0
326       0       0 140       1        1          1        0  0           0
327       0       0 140       1        1          1        0  0           0
328       0       0 140       1        1          1        0  0           0
329       0       0 140       1        1          1        0  0           0
330       0       0 140       0        1          1        0  0           0
331       0       0 141       1        1          1        0  0           0
332       0       0 141       1        1          1        0  0           0
333       0       0 141       1        1          1        0  0           0
334       0       0 141       1        1          1        0  0           0
335       0       0 141       1        1          1        0  0           0
336       0       0 141       1        1          1        0  0           0
337       0       0 141       1        1          1        0  0           0
338       0       0 141       1        1          1        0  0           0
339       0       0 146       0        0          1        1  0           0
340       0       0 146       0        0          1        1  0           0
341       0       0 147       1        1          1        0  1           0
342       1       0 148       0        1          1        0  1           0
343       1       0 148       1        1          1        0  1           0
344       1       0 148       1        1          1        0  1           0
345       1       0 148       1        1          1        0  1           0
346       1       0 148       1        1          1        0  1           0
347       1       0 148       1        1          1        0  1           0
348       1       0 148       1        1          1        0  1           0
349       0       0 148       1        1          1        0  1           0
350       0       0 148       1        1          1        0  1           0
351       0       0 148       1        1          1        0  1           0
352       0       0 148       0        1          1        0  1           0
353       0       0 148       1        1          1        0  1           0
354       0       1 149       0        1          1        1  1           0
355       0       1 149       0        1          1        1  1           1
356       1       0 149       0        1          1        0  1           0
357       1       0 149       0        1          1        0  1           0
358       1       0 149       0        1          1        0  1           0
359       1       0 149       1        1          1        0  1           0
360       1       0 149       1        1          1        0  1           0
361       0       0 150       1        1          1        0  0           0
362       0       0 150       1        1          1        0  0           0
363       1       0 151       1        1          1        0  1           0
364       1       0 151       1        1          1        0  1           0
365       0       1 151       1        1          1        1  1           0
366       1       0 151       1        1          1        0  1           0
367       1       0 151       1        1          1        0  1           0
368       0       0 154       1        1          1        0  1           0
369       0       0 157       1        1          1        0  1           0
370       0       0 157       1        1          1        0  1           0
371       1       0 157       0        1          0        0  1           0
372       1       0 157       0        1          0        0  1           0
373       1       0 157       0        1          0        0  1           0
374       1       0 157       0        1          0        0  1           0
375       1       0 157       0        1          0        0  1           0
376       1       0 159       1        1          1        0  1           0
377       1       0 159       1        1          1        0  1           0
378       1       0 159       1        1          1        0  1           0
379       1       0 159       1        1          1        0  1           0
380       1       0 159       1        1          1        0  1           0
381       0       0 159       1        1          1        0  1           0
382       1       0 160       1        1          1        0  1           0
383       0       1 160       1        1          1        1  1           0
384       1       0 160       1        1          1        0  1           0
385       1       0 160       1        1          1        0  1           0
386       0       1 160       1        1          1        1  1           0
387       0       1 160       1        1          1        1  1           0
388       0       1 160       1        1          1        1  1           0
389       1       0 160       1        1          1        0  1           0
390       0       1 160       1        1          1        1  1           0
391       0       1 160       0        1          1        1  1           0
392       0       1 161       1        1          1        1  1           0
393       0       0 162       1        1          1        0  0           0
394       0       0 162       1        1          1        0  0           0
395       0       0 162       1        1          1        0  0           0
396       0       0 162       1        1          1        0  0           0
397       0       0 162       1        1          1        0  0           0
398       0       0 162       1        1          1        0  0           0
399       0       0 162       1        1          1        0  0           0
400       0       0 162       1        1          1        0  0           0
401       0       0 162       1        1          1        0  0           0
402       0       0 162       1        1          1        0  0           0
403       0       0 162       1        1          1        0  0           0
404       0       0 162       1        1          1        0  0           0
405       1       0 163       1        1          1        0  1           0
406       1       0 163       1        1          1        0  1           0
407       1       0 163       1        1          1        0  1           0
408       1       0 163       1        1          1        0  1           0
409       1       0 163       1        1          1        0  1           0
410       0       0 163       1        1          1        0  1           0
411       1       0 163       1        1          1        0  1           0
412       1       0 163       0        1          1        0  1           0
413       1       0 165       1        1          1        0  1           0
414       1       0 165       0        1          1        0  1           0
415       1       0 165       0        1          1        0  1           0
416       0       0 164       1        1          1        0  1           0
417       1       0 164       1        1          1        0  1           0
418       0       0 166       1        1          1        1  0           0
419       0       0 166       0        1          1        1  0           0
420       0       0 166       1        1          1        1  0           0
421       0       0 166       1        1          1        1  0           0
422       0       0 166       1        1          1        1  0           0
423       0       0 166       1        1          1        1  0           0
424       0       0 166       1        1          1        1  0           0
425       0       0 167       1        1          1        0  0           0
426       0       0 167       0        1          1        0  0           0
427       0       0 167       1        1          1        0  0           0
428       0       0 167       1        1          1        0  0           0
429       0       0 167       1        1          1        0  0           0
430       0       0 167       1        1          1        0  0           0
431       0       0 167       1        1          1        0  0           0
432       0       0 167       1        1          1        0  0           1
433       0       0 167       1        1          1        0  0           0
434       0       0 167       1        1          1        0  0           0
435       0       0 167       1        1          1        0  0           1
436       0       0 167       1        1          1        0  0           0
437       1       0 173       1        1          1        0  1           0
438       0       1 175       1        1          1        1  1           0
439       0       1 175       1        1          1        1  1           0
440       0       1 175       1        1          1        1  1           0
441       0       1 175       1        1          1        1  1           0
442       0       1 176       1        1          1        1  1           0
443       0       1 176       0        1          1        1  1           0
444       0       1 176       1        1          1        1  1           0
445       0       1 176       1        1          1        1  1           0
446       0       1 176       1        1          1        1  1           0
447       0       1 176       1        1          1        1  1           0
448       0       1 176       1        1          1        1  1           0
449       0       1 176       1        1          1        1  1           0
450       0       1 176       1        1          1        1  1           0
451       0       0 177       1        1          1        0  1           0
452       0       0 177       1        1          1        0  1           0
453       0       0 177       1        1          1        0  1           0
454       0       1 178       1        1          1        1  1           0
455       0       1 178       1        1          1        1  1           0
456       0       1 178       1        1          1        1  1           0
457       0       1 178       1        1          1        1  1           0
458       0       1 178       1        1          1        1  1           0
459       1       0 178       1        1          1        0  1           0
460       1       0 178       1        1          1        0  1           0
461       0       0 180       0        1          0        0  1           0
462       0       0 180       0        1          0        0  1           0
463       0       0 180       0        1          0        0  1           0
464       0       0 180       1        1          1        0  1           0
465       0       0 180       1        1          1        0  1           0
466       0       0 180       1        1          1        0  1           0
467       0       0 184       1        1          1        0  1           0
468       0       0 187       1        1          1        0  0           0
469       0       0 187       1        1          1        0  0           0
470       0       0 187       1        1          1        0  0           0
471       0       0 187       1        1          1        0  0           0
472       0       0 187       1        1          1        0  0           0
473       0       0 187       1        1          1        0  0           1
474       0       0 187       1        1          1        0  0           0
475       0       0 187       1        1          1        0  0           0
476       0       0 187       1        1          1        0  0           1
477       0       0 188       0        1          1        0  1           0
478       0       0 188       0        1          1        0  1           0
479       0       0 188       1        1          1        0  1           0
480       0       0 188       0        1          1        0  1           0
481       0       0 188       0        1          1        0  1           0
482       0       0 188       0        1          1        0  1           0
483       0       0 188       0        1          1        0  1           0
484       0       0 188       0        1          1        0  1           0
485       1       0 191       0        1          1        0  1           0
486       1       0 191       0        1          1        0  1           0
487       1       0 191       0        1          1        0  1           0
488       1       0 191       0        1          1        0  1           0
489       1       0 191       0        1          1        0  1           0
490       1       0 191       0        1          1        0  1           0
491       1       0 191       1        1          1        0  1           0
492       1       0 191       0        1          1        0  1           0
493       0       0 193       1        1          1        0  0           0
494       0       0 194       0        0          0        0  0           0
495       0       0 194       0        0          0        0  0           0
496       0       0 195       1        1          1        0  0           0
497       0       0 195       1        1          1        0  0           0
498       1       0 196       1        1          1        0  1           0
499       1       0 196       0        1          0        0  1           0
500       1       0 196       0        1          0        0  1           0
501       1       0 196       0        1          0        0  1           0
502       1       0 196       0        1          0        0  1           0
503       1       0 196       0        1          0        0  1           0
504       1       0 196       0        1          0        0  1           0
505       0       0 197       0        0          0        0  0           0
506       0       0 197       0        0          0        0  0           0
507       0       0 200       1        1          1        0  0           0
508       0       0 200       1        1          1        0  0           0
509       0       0 200       1        1          1        0  0           2
510       0       0 200       1        1          1        0  0           0
511       0       0 200       1        1          1        0  0           0
512       0       0 200       1        1          1        0  0           0
513       0       0 200       1        1          1        0  0           0
514       0       0 200       1        1          1        0  0           0
515       0       0 200       1        1          1        0  0           0
516       0       0 200       1        1          1        0  0           0
517       0       0 200       1        1          1        0  0           0
518       0       0 200       1        1          1        1  0           0
519       0       0 200       1        1          1        0  0           0
520       0       0 201       1        1          1        0  1           0
521       0       0 202       0        0          0        0  0           0
522       0       0 203       0        0          0        0  0           0
523       0       0 203       0        0          0        0  0           0
524       0       0 203       0        0          0        0  0           0
525       0       0 203       0        0          0        0  0           0
526       0       0 203       0        0          0        0  0           0
527       0       0 204       0        0          0        0  0           0
528       0       0 204       0        0          0        0  0           0
529       0       0 206       0        0          0        0  0           0
530       0       0 206       0        0          0        0  0           0
531       0       0 206       0        0          0        0  0           0
532       0       0 206       0        0          0        0  0           0
533       0       0 206       0        0          0        0  0           0
534       0       0 206       0        0          0        0  0           0
535       0       0 206       0        0          0        0  0           0
536       0       0 207       1        1          1        1  0           0
537       0       0 207       1        1          1        1  0           0
538       0       0 207       1        1          1        1  0           0
539       0       0 207       1        1          1        1  0           0
540       0       0 209       0        1          1        1  1           0
541       0       0 209       0        1          1        1  1           0
542       0       0 209       0        1          1        1  1           0
543       1       0 209       1        1          1        0  1           0
544       1       0 213       1        1          1        0  1           0
545       1       0 213       1        1          1        0  1           0
546       1       0 213       1        1          1        0  1           0
547       1       0 213       1        1          1        0  1           1
548       1       0 213       1        1          1        0  1           0
549       1       0 213       1        1          1        0  1           1
550       1       0 213       1        1          1        0  1           0
551       1       0 213       1        1          1        0  1           5
552       1       0 213       1        1          1        0  1           0
553       1       0 214       0        0          0        0  1           0
554       1       0 215       0        0          1        0  1           0
555       1       0 215       0        0          1        0  1           0
556       0       0 216       1        1          1        0  0           0
557       0       0 216       1        1          1        0  0           0
558       0       0 216       1        1          1        0  0           0
559       0       0 216       1        1          1        0  0           0
560       0       0 216       1        1          1        0  0           0
561       0       0 216       0        1          0        0  0           0
562       0       0 216       0        1          0        0  0           0
563       0       0 216       0        1          0        0  0           0
564       0       0 216       0        1          0        0  0           0
565       0       0 216       0        1          0        0  0           0
566       0       0 216       0        1          0        0  0           0
567       0       0 216       0        1          0        0  0           0
568       0       0 216       1        1          1        0  0           0
569       0       0 217       0        0          0        0  0           0
570       1       0 221       1        1          1        0  1           0
571       1       0 221       1        1          1        0  1           0
572       1       0 221       1        1          1        0  1           0
573       0       0 221       1        1          1        0  1           0
574       0       0 221       1        1          1        0  1           0
575       0       0 221       0        1          1        0  1           0
576       0       0 221       0        1          1        0  1           0
577       0       0 221       0        1          1        0  1           0
578       1       0 223       1        1          1        0  1           0
579       1       0 224       1        1          1        0  1           0
580       0       0 226       1        1          1        0  1           0
581       0       0 226       0        1          1        0  1           0
582       0       0 226       0        1          1        0  1           0
583       0       0 226       1        1          1        0  1           0
584       1       0 226       1        1          1        0  1           0
585       1       0 226       1        1          1        0  1           1
586       1       0 226       1        1          1        0  1           0
587       1       0 226       1        1          1        0  1           1
588       1       0 229       0        0          1        0  1           0
589       1       0 232       1        1          1        0  1           0
590       1       0 233       1        1          1        0  1           0
591       1       0 233       1        1          1        0  1           0
592       0       0 234       0        0          1        0  0           0
593       0       0 234       0        0          1        0  0           0
594       0       0 234       0        0          1        0  0           0
595       0       0 235       0        0          0        0  0           0
596       0       0 235       0        0          0        0  0           0
597       0       0 236       0        0          1        0  0           0
598       0       0 236       0        0          1        0  0           0
599       0       0 236       0        0          1        0  0           0
600       0       0 236       0        0          1        0  0           0
601       0       0 236       0        0          1        0  0           0
602       1       0 237       1        1          1        0  1           0
603       0       1 237       1        1          1        1  1           0
604       0       0 240       0        0          1        0  0           0
605       0       0 241       1        1          1        1  0           0
606       0       0 241       1        1          1        1  0           0
607       0       0 242       1        1          1        1  0           0
608       0       0 243       1        1          1        0  1           0
609       0       0 243       1        1          1        0  1           0
610       0       0 243       1        1          1        0  1           0
611       1       0 243       1        1          1        0  1           0
612       1       0 243       1        1          1        0  1           0
613       1       0 243       1        1          1        0  1           0
614       1       0 243       1        1          1        0  1           0
615       1       0 243       1        1          1        0  1           0
616       1       0 243       1        1          1        0  1           0
617       1       0 243       1        1          1        0  1           0
618       1       0 243       1        1          1        0  1           0
619       1       0 243       1        1          1        0  1           0
620       0       0 244       1        1          1        0  1           0
621       0       0 250       1        1          1        0  1           0
622       0       0 250       1        1          1        0  1           0
623       0       0 250       1        1          1        0  1           0
624       0       0 250       1        1          1        0  1           0
625       0       0 250       1        1          1        0  1           2
626       1       0 251       1        1          1        0  1           0
627       1       0 251       1        1          1        0  1           0
628       1       0 251       1        1          1        0  1           0
629       1       0 251       1        1          1        0  1           0
    softratio_military softratio_tourist softratio_ngo softratio_comms
1           0.50000000        0.50000000    0.50000000      1.00000000
2           1.00000000        1.00000000    1.00000000      1.00000000
3           0.80000001        1.00000000    1.00000000      1.00000000
4           1.00000000        1.00000000    1.00000000      1.00000000
5           0.71428573        0.71428573    0.71428573      0.71428573
6           0.89999998        0.88888890    0.88888890      0.88888890
7           0.60000002        0.56250000    0.50000000      0.56250000
8           0.84615386        0.85714287    0.85714287      0.85714287
9           0.93333334        0.93333334    0.86666667      0.93333334
10          0.60000002        0.50000000    0.50000000      0.50000000
11          0.50000000        0.60000002    0.60000002      0.60000002
12          0.66666669        0.66666669    0.66666669      0.66666669
13          0.57142860        0.66666669    0.66666669      0.66666669
14          0.20000000        0.16666667    0.16666667      0.16666667
15          0.00000000        0.00000000    0.00000000      0.00000000
16          1.00000000        1.00000000    1.00000000      1.00000000
17          0.00000000        0.00000000    0.00000000      0.00000000
18          0.00000000        0.50000000    0.50000000      0.50000000
19          0.84615386        0.81250000    0.81250000      0.81250000
20          0.82499999        0.85000002    0.85000002      0.85000002
21          0.71428573        0.73333335    0.73333335      0.73333335
22          0.72727275        0.57142860    0.57142860      0.57142860
23          0.50000000        0.53333336    0.53333336      0.53333336
24          0.83333331        0.71428573    0.71428573      0.71428573
25          0.83333331        0.89473683    0.89473683      0.89473683
26          0.00000000        0.00000000    0.00000000      0.00000000
27          0.00000000        0.00000000    0.00000000      0.00000000
28          1.00000000        0.50000000    0.50000000      0.50000000
29          1.00000000        1.00000000    1.00000000      1.00000000
30          1.00000000        1.00000000    1.00000000      1.00000000
31          0.00000000        0.00000000    0.00000000      0.00000000
32          0.00000000        0.00000000    0.00000000      0.00000000
33          0.00000000        0.00000000    0.00000000      0.00000000
34          0.00000000        0.00000000    0.00000000      0.00000000
35          0.00000000        0.00000000    0.00000000      0.00000000
36          0.00000000        0.00000000    0.00000000      0.00000000
37          0.16666667        0.00000000    0.00000000      0.00000000
38          0.17857143        0.20408164    0.20408164      0.20408164
39          0.60000002        0.60000002    0.60000002      0.60000002
40          0.33333334        0.38235295    0.38235295      0.38235295
41          0.18181819        0.35294119    0.35294119      0.35294119
42          0.75000000        0.75000000    0.75000000      0.75000000
43          1.00000000        1.00000000    1.00000000      1.00000000
44          0.50000000        0.50000000    0.50000000      0.50000000
45          1.00000000        1.00000000    1.00000000      1.00000000
46          0.88888890        1.00000000    1.00000000      1.00000000
47          0.88888890        0.88888890    0.88888890      0.88888890
48          1.00000000        1.00000000    1.00000000      1.00000000
49          0.88888890        0.88888890    0.88888890      0.88888890
50          1.00000000        1.00000000    1.00000000      1.00000000
51          0.50000000        0.50000000    0.50000000      0.50000000
52          0.00000000        0.25000000    0.25000000      0.25000000
53          1.00000000        1.00000000    1.00000000      1.00000000
54          0.00000000        0.00000000    0.00000000      0.00000000
55          0.00000000        0.00000000    0.00000000      0.00000000
56          0.22222222        0.22222222    0.22222222      0.33333334
57          0.33333334        0.50000000    0.50000000      0.50000000
58          0.40000001        0.40000001    0.40000001      0.40000001
59          0.00000000        0.00000000    0.00000000      0.00000000
60          0.00000000        0.00000000    0.00000000      0.00000000
61          1.00000000        1.00000000    1.00000000      1.00000000
62          1.00000000        1.00000000    1.00000000      1.00000000
63          1.00000000        1.00000000    1.00000000      1.00000000
64          0.00000000        0.00000000    0.00000000      0.00000000
65          0.61111110        0.75000000    0.75000000      0.75000000
66          0.23170732        0.27419356    0.27419356      0.27419356
67          0.22784810        0.23999999    0.22666667      0.23999999
68          0.11111111        0.12195122    0.12195122      0.12195122
69          0.20512821        0.22222222    0.22222222      0.22222222
70          0.18181819        0.18181819    0.18181819      0.18181819
71          0.16666667        0.00000000    0.00000000      0.00000000
72          0.75000000        1.00000000    1.00000000      1.00000000
73          0.33333334        0.33333334    0.33333334      0.33333334
74          0.63793105        0.69090909    0.69090909      0.69090909
75          0.83333331        0.83333331    0.83333331      0.83333331
76          0.89999998        0.89999998    0.89999998      0.89999998
77          0.90909094        0.90909094    0.90909094      0.90909094
78          0.41666666        0.55555558    0.55555558      0.55555558
79          0.62500000        0.71428573    0.71428573      0.71428573
80          0.76470590        0.86666667    0.86666667      0.86666667
81          0.76923078        0.77777779    0.77777779      0.77777779
82          0.75000000        0.89999998    0.89999998      0.89999998
83          1.00000000        1.00000000    1.00000000      1.00000000
84          1.00000000        1.00000000    1.00000000      1.00000000
85          1.00000000        1.00000000    1.00000000      1.00000000
86          0.00000000        0.00000000    0.00000000      0.00000000
87          1.00000000        1.00000000    1.00000000      1.00000000
88          0.41666666        0.50000000    0.50000000      0.50000000
89          0.30769232        0.30769232    0.30769232      0.30769232
90          0.33333334        0.33333334    0.33333334      0.33333334
91          1.00000000        1.00000000    1.00000000      1.00000000
92          1.00000000        1.00000000    1.00000000      1.00000000
93          0.55555558        0.71428573    0.71428573      0.75000000
94          0.52380955        0.54761904    0.54761904      0.54761904
95          0.25641027        0.28571430    0.28571430      0.28571430
96          0.11111111        0.11111111    0.11111111      0.11111111
97          0.00000000        0.00000000    0.00000000      0.00000000
98          0.40909091        0.40909091    0.40909091      0.43181819
99          0.50000000        0.51515150    0.51515150      0.51515150
100         0.65384614        0.64285713    0.64285713      0.67857140
101         0.72727275        0.72727275    0.72727275      0.72727275
102         0.50000000        0.50000000    0.50000000      0.50000000
103         0.78947371        0.78947371    0.78947371      0.78947371
104         0.41176471        0.41176471    0.41176471      0.41176471
105         0.20000000        0.33333334    0.33333334      0.33333334
106         1.00000000        1.00000000    1.00000000      1.00000000
107         0.14285715        0.25000000    0.25000000      0.25000000
108         0.75000000        1.00000000    1.00000000      1.00000000
109         0.00000000        0.00000000    0.00000000      0.00000000
110         0.00000000        0.00000000    0.00000000      0.00000000
111         0.50000000        0.50000000    0.50000000      0.50000000
112         1.00000000        1.00000000    1.00000000      1.00000000
113         0.20000000        0.25000000    0.25000000      0.25000000
114         0.70588237        0.70588237    0.70588237      0.70588237
115         0.50000000        0.66666669    0.66666669      0.66666669
116         0.00000000        0.00000000    0.00000000      0.00000000
117         0.00000000        0.00000000    0.00000000      0.00000000
118         0.00000000        0.00000000    0.00000000      0.00000000
119         0.00000000        0.00000000    0.00000000      0.00000000
120         0.00000000        0.00000000    0.00000000      0.00000000
121         1.00000000        1.00000000    1.00000000      1.00000000
122         0.62500000        0.62500000    0.62500000      0.62500000
123         0.72727275        0.71428573    0.71428573      0.71428573
124         0.13043478        0.13636364    0.13636364      0.13636364
125         0.77777779        0.77777779    0.77777779      0.77777779
126         0.00000000        0.00000000    0.00000000      0.00000000
127         0.80000001        0.83333331    0.83333331      0.83333331
128         0.00000000        0.00000000    0.00000000      0.00000000
129         0.50000000        0.50000000    0.50000000      0.50000000
130         0.53333336        0.57142860    0.57142860      0.57142860
131         0.44444445        0.44444445    0.44444445      0.44444445
132         0.66666669        0.66666669    0.66666669      0.66666669
133         0.00000000        0.00000000    0.00000000      0.00000000
134         0.00000000        0.00000000    0.00000000      0.00000000
135         0.00000000        0.00000000    0.00000000      0.00000000
136         0.00000000        0.00000000    0.00000000      0.00000000
137         0.00000000        0.00000000    0.00000000      0.00000000
138         0.00000000        0.00000000    0.00000000      0.00000000
139         0.00000000        0.00000000    0.00000000      0.00000000
140         0.00000000        0.00000000    0.00000000      0.00000000
141         0.00000000        0.00000000    0.00000000      0.00000000
142         1.00000000        1.00000000    1.00000000      1.00000000
143         0.00000000        0.00000000    0.00000000      0.00000000
144         0.04347826        0.04545455    0.04545455      0.04545455
145         0.60344827        0.60344827    0.58620691      0.60344827
146         0.62500000        0.57142860    0.57142860      0.57142860
147         0.60000002        0.60000002    0.60000002      0.60000002
148         0.50000000        0.50000000    0.50000000      0.50000000
149         0.00000000        0.00000000    0.00000000      0.00000000
150         1.00000000        1.00000000    1.00000000      1.00000000
151         1.00000000        1.00000000    1.00000000      1.00000000
152         0.75000000        0.75000000    0.75000000      0.75000000
153         0.50000000        0.50000000    0.50000000      0.50000000
154         1.00000000        1.00000000    0.66666669      1.00000000
155         1.00000000        0.75000000    0.75000000      0.75000000
156         0.07407407        0.07407407    0.07407407      0.07407407
157         0.50000000        1.00000000    1.00000000      1.00000000
158         0.85714287        0.85714287    0.85714287      0.85714287
159         1.00000000        1.00000000    1.00000000      1.00000000
160         0.80000001        0.80000001    0.80000001      0.80000001
161         0.66666669        0.50000000    0.50000000      0.50000000
162         0.00000000        0.00000000    0.00000000      0.00000000
163         0.68965518        0.71875000    0.71875000      0.71875000
164         0.69999999        0.65625000    0.65625000      0.65625000
165         0.74285716        0.80000001    0.80000001      0.80000001
166         0.61538464        0.64285713    0.64285713      0.64285713
167         0.93750000        0.88235295    0.88235295      0.88235295
168         0.50000000        0.83333331    0.83333331      0.83333331
169         0.19444445        0.21052632    0.21052632      0.21052632
170         0.83333331        0.83333331    0.83333331      0.83333331
171         1.00000000        1.00000000    1.00000000      1.00000000
172         0.00000000        0.00000000    0.00000000      0.00000000
173         1.00000000        1.00000000    1.00000000      1.00000000
174         0.00000000        0.00000000    0.00000000      0.00000000
175         1.00000000        1.00000000    0.00000000      1.00000000
176         1.00000000        1.00000000    1.00000000      1.00000000
177         0.12500000        0.40000001    0.40000001      0.40000001
178         0.00000000                NA            NA              NA
179         0.11111111        0.33333334    0.33333334      0.33333334
180         0.05555556        0.05555556    0.05555556      0.05555556
181         0.09090909        0.09523810    0.09523810      0.09523810
182         0.00000000        0.00000000    0.00000000      0.00000000
183         1.00000000        1.00000000    1.00000000      1.00000000
184         0.00000000        0.00000000    0.00000000      0.00000000
185         0.00000000        0.00000000    0.00000000      0.00000000
186         1.00000000        1.00000000    1.00000000      1.00000000
187         1.00000000        1.00000000    1.00000000      1.00000000
188         1.00000000        1.00000000    1.00000000      1.00000000
189         1.00000000        1.00000000    1.00000000      1.00000000
190         0.85714287        0.83333331    0.83333331      0.83333331
191         0.00000000        0.00000000    0.00000000      0.00000000
192         1.00000000        1.00000000    1.00000000      1.00000000
193         0.00000000        0.00000000    0.00000000      0.00000000
194         0.36363637        0.50000000    0.50000000      0.50000000
195         0.18181819        0.18181819    0.18181819      0.18181819
196         0.00000000        0.00000000    0.00000000      0.00000000
197         0.12500000        0.12500000    0.12500000      0.12500000
198         0.00000000        0.00000000    0.00000000      0.00000000
199         0.20000000        0.25000000    0.25000000      0.25000000
200         0.20000000        0.33333334    0.33333334      0.33333334
201         0.00000000        0.00000000    0.00000000      0.00000000
202         0.00000000        0.00000000    0.00000000      0.00000000
203         0.00000000        0.00000000    0.00000000      0.00000000
204         0.66666669        0.66666669    0.66666669      0.66666669
205         0.75000000        1.00000000    1.00000000      1.00000000
206         0.45454547        0.83333331    0.83333331      0.83333331
207         0.21428572        0.75000000    0.75000000      0.75000000
208         0.60000002        0.60000002    0.60000002      0.60000002
209         0.85714287        0.85714287    0.71428573      0.85714287
210         0.60000002        0.60000002    0.60000002      0.60000002
211         0.00000000        0.00000000    0.00000000      0.00000000
212         0.00000000        0.00000000    0.00000000      0.00000000
213         0.00000000        0.00000000    0.00000000      0.00000000
214         0.00000000        0.00000000    0.00000000      0.00000000
215         0.50000000        0.33333334    0.33333334      0.33333334
216         0.00000000        0.00000000    0.00000000      0.00000000
217         0.00000000        0.00000000    0.00000000      0.00000000
218         0.00000000        0.00000000    0.00000000      0.00000000
219         0.52941179        0.52941179    0.52941179      0.52941179
220         0.00000000        0.00000000    0.00000000      0.00000000
221         0.25000000        0.25000000    0.25000000      0.25000000
222         0.00000000        0.00000000    0.00000000      0.00000000
223         0.00000000        0.50000000    0.50000000      0.50000000
224         1.00000000        1.00000000    1.00000000      1.00000000
225         0.14285715        0.14285715    0.14285715      0.14285715
226         1.00000000        1.00000000    1.00000000      1.00000000
227         1.00000000        1.00000000    1.00000000      1.00000000
228         0.21428572        0.21428572    0.21428572      0.21428572
229         1.00000000        1.00000000    1.00000000      1.00000000
230         0.00000000        0.00000000    0.00000000      0.00000000
231         0.00000000        0.00000000    0.00000000      0.00000000
232         0.00000000        0.00000000    0.00000000      0.00000000
233         0.00000000        0.00000000    0.00000000      0.00000000
234         0.00000000        0.00000000    0.00000000      0.00000000
235         0.00000000        0.00000000    0.00000000      0.00000000
236         0.16666667        0.16666667    0.16666667      0.16666667
237         1.00000000        1.00000000    1.00000000      1.00000000
238         1.00000000        1.00000000    1.00000000      1.00000000
239         0.97435898        0.97435898    0.97435898      0.97435898
240         0.00000000        0.66666669    0.66666669      0.66666669
241         0.66666669        0.66666669    0.66666669      0.66666669
242         0.00000000        0.00000000    0.00000000      0.00000000
243         1.00000000        1.00000000    1.00000000      1.00000000
244         0.33333334        0.33333334    0.33333334      0.33333334
245         0.66666669        0.66666669    0.66666669      0.66666669
246         1.00000000        0.75000000    0.75000000      0.75000000
247         0.50000000        0.50000000    0.50000000      0.50000000
248         0.00000000        0.00000000    0.00000000      0.00000000
249         1.00000000        1.00000000    1.00000000      1.00000000
250         0.00000000        0.00000000    0.00000000      0.00000000
251         0.50000000        0.50000000    0.50000000      0.50000000
252         1.00000000        1.00000000    1.00000000      1.00000000
253         0.66666669        0.66666669    0.66666669      0.66666669
254         1.00000000        1.00000000    1.00000000      1.00000000
255         0.75000000        0.75000000    0.75000000      0.75000000
256         0.00000000        0.00000000    0.00000000      0.00000000
257         0.00000000        0.00000000    0.00000000      1.00000000
258         1.00000000        1.00000000    1.00000000      1.00000000
259         1.00000000        0.90909094    0.86363637      0.90909094
260         0.00000000        0.00000000    0.00000000      0.00000000
261         0.50000000        0.50000000    0.50000000      0.50000000
262         0.00000000        0.00000000    0.00000000      0.00000000
263         0.42857143        0.42857143    0.42857143      0.42857143
264         0.75000000        0.76190478    0.76190478      0.76190478
265         0.42857143        0.54545456    0.54545456      0.54545456
266         0.40000001        0.53333336    0.53333336      0.53333336
267         0.36363637        0.44444445    0.44444445      0.44444445
268         0.55555558        0.60000002    0.60000002      0.60000002
269         0.37931034        0.42307693    0.38461539      0.42307693
270         1.00000000        1.00000000    1.00000000      1.00000000
271         0.33333334        0.33333334    0.33333334      0.33333334
272         0.12500000        0.16666667    0.16666667      0.16666667
273         0.35714287        0.37037036    0.37037036      0.37037036
274         0.42857143        0.45454547    0.45454547      0.45454547
275         0.46666667        0.50000000    0.50000000      0.50000000
276         1.00000000        1.00000000    1.00000000      1.00000000
277         1.00000000        1.00000000    1.00000000      1.00000000
278         1.00000000        1.00000000    1.00000000      1.00000000
279         0.00000000        0.00000000    0.00000000      0.00000000
280         1.00000000        1.00000000    1.00000000      1.00000000
281         0.00000000        0.00000000    0.00000000      0.00000000
282         0.75000000        0.75000000    0.75000000      0.75000000
283         1.00000000        1.00000000    1.00000000      1.00000000
284         1.00000000        1.00000000    1.00000000      1.00000000
285         1.00000000        1.00000000    1.00000000      1.00000000
286         1.00000000        1.00000000    1.00000000      1.00000000
287         0.00000000        0.00000000    0.00000000      0.00000000
288         0.00000000        0.00000000    0.00000000      0.00000000
289         0.22222222        0.22222222    0.22222222      0.22222222
290         0.33333334        0.38888890    0.38888890      0.38888890
291         0.38461539        0.38461539    0.38461539      0.38461539
292         1.00000000        1.00000000    1.00000000      1.00000000
293         1.00000000        1.00000000    1.00000000      1.00000000
294         0.62500000        0.62500000    0.62500000      0.62500000
295         0.44444445        0.50000000    0.50000000      0.50000000
296         0.28571430        0.40000001    0.40000001      0.40000001
297         0.17647059        0.31034482    0.31034482      0.31034482
298         0.29577464        0.41904762    0.41904762      0.45714286
299         0.20754717        0.34375000    0.34375000      0.34375000
300         0.25000000        0.25806451    0.25806451      0.25806451
301         0.15384616        0.17142858    0.17142858      0.20000000
302         0.21568628        0.22222222    0.22222222      0.22222222
303         0.34782609        0.34782609    0.34782609      0.34782609
304         0.66666669        0.66666669    0.66666669      0.66666669
305         0.00000000        0.00000000    0.00000000      0.00000000
306         0.33333334        0.36842105    0.36842105      0.36842105
307         0.30769232        0.34146342    0.32926831      0.34146342
308         0.38311687        0.40816328    0.38095239      0.40816328
309         0.44444445        0.55000001    0.55000001      0.55000001
310         0.66666669        1.00000000    1.00000000      1.00000000
311         0.72222221        0.86666667    0.86666667      0.86666667
312         0.66666669        0.80000001    0.80000001      0.80000001
313         0.83333331        0.83333331    0.83333331      0.83333331
314         0.77777779        0.77777779    0.77777779      0.77777779
315         0.88888890        0.88888890    0.77777779      0.88888890
316         0.88235295        0.88888890    0.88888890      0.88888890
317         0.85714287        0.89999998    0.89999998      0.89999998
318         1.00000000        1.00000000    1.00000000      1.00000000
319         0.90909094        0.90909094    0.90909094      0.90909094
320         0.66666669        0.66666669    0.33333334      0.66666669
321         1.00000000        1.00000000    1.00000000      1.00000000
322         0.00000000        0.00000000    0.00000000      0.00000000
323         0.40000001        0.40000001    0.40000001      0.40000001
324         1.00000000        1.00000000    1.00000000      1.00000000
325         1.00000000        1.00000000    1.00000000      1.00000000
326         0.50000000        0.50000000    0.50000000      0.50000000
327         0.66666669        0.66666669    0.66666669      0.66666669
328         0.50000000        0.50000000    0.50000000      0.50000000
329         0.00000000        0.00000000    0.00000000      0.00000000
330         0.00000000        0.00000000    0.00000000      0.00000000
331         0.00000000        0.00000000    0.00000000      0.00000000
332         0.00000000        0.00000000    0.00000000      0.00000000
333         0.18181819        0.25000000    0.25000000      0.25000000
334         0.41379312        0.41379312    0.41379312      0.41379312
335         0.16666667        0.20000000    0.20000000      0.20000000
336         0.36000001        0.36956522    0.34782609      0.36956522
337         0.51219511        0.53846157    0.51282054      0.56410259
338         0.52173913        0.53333336    0.51111114      0.53333336
339         1.00000000        1.00000000    1.00000000      1.00000000
340         1.00000000        1.00000000    1.00000000      1.00000000
341         1.00000000        1.00000000    1.00000000      1.00000000
342         0.00000000        0.00000000    0.00000000      0.00000000
343         0.22222222        0.50000000    0.50000000      0.50000000
344         0.85714287        1.00000000    1.00000000      1.00000000
345         0.50000000        0.50000000    0.50000000      0.50000000
346         0.60000002        0.60000002    0.60000002      0.60000002
347         0.60869563        0.62686568    0.62686568      0.64179105
348         0.58333331        0.61538464    0.61538464      0.61538464
349         0.66666669        0.66666669    0.66666669      0.66666669
350         0.45161289        0.49180329    0.49180329      0.49180329
351         0.33333334        0.25000000    0.25000000      0.25000000
352         0.50000000        0.50000000    0.50000000      0.50000000
353         0.50000000        0.50000000    0.50000000      0.50000000
354         1.00000000        1.00000000    1.00000000      1.00000000
355         0.66666669        0.66666669    0.66666669      0.66666669
356         1.00000000        1.00000000    1.00000000      1.00000000
357         1.00000000        1.00000000    1.00000000      1.00000000
358         1.00000000        1.00000000    1.00000000      1.00000000
359         0.00000000        0.00000000    0.00000000      0.00000000
360         0.00000000        0.00000000    0.00000000      0.00000000
361         0.00000000        0.00000000    0.00000000      0.00000000
362         0.00000000        0.00000000    0.00000000      0.00000000
363         0.00000000        0.00000000    0.00000000      0.00000000
364         0.46666667        0.53333336    0.53333336      0.53333336
365         1.00000000        1.00000000    1.00000000      1.00000000
366         0.00000000        0.00000000    0.00000000      0.00000000
367         1.00000000        1.00000000    1.00000000      1.00000000
368         1.00000000        1.00000000    1.00000000      1.00000000
369         0.72527474        0.74157304    0.74157304      0.74157304
370         0.81250000        0.81250000    0.81250000      0.81250000
371         1.00000000        1.00000000    1.00000000      1.00000000
372         0.00000000        0.00000000    0.00000000      0.00000000
373         0.00000000        0.00000000    0.00000000      0.00000000
374         1.00000000        1.00000000    1.00000000      1.00000000
375         1.00000000        1.00000000    1.00000000      1.00000000
376         0.00000000        0.00000000    0.00000000      0.00000000
377         1.00000000        1.00000000    1.00000000      1.00000000
378         0.00000000        0.00000000    0.00000000      0.00000000
379         0.50000000        0.50000000    0.50000000      0.50000000
380         1.00000000        1.00000000    1.00000000      1.00000000
381         0.50000000        0.53846157    0.53846157      0.53846157
382         0.66666669        0.66666669    0.66666669      0.66666669
383         1.00000000        1.00000000    1.00000000      1.00000000
384         1.00000000        1.00000000    1.00000000      1.00000000
385         1.00000000        1.00000000    1.00000000      1.00000000
386         0.00000000        0.00000000    0.00000000      0.00000000
387         0.50000000        0.50000000    0.50000000      0.50000000
388         0.83333331        0.83333331    0.83333331      0.83333331
389         0.75000000        0.75000000    0.75000000      0.75000000
390         1.00000000        0.83333331    0.83333331      0.83333331
391         0.00000000        0.00000000    0.00000000      0.00000000
392         0.22857143        0.23529412    0.23529412      0.23529412
393         0.33333334        0.36363637    0.36363637      0.36363637
394         0.39639640        0.41509435    0.41509435      0.42452830
395         0.38202247        0.40000001    0.40000001      0.40000001
396         0.00000000        0.00000000    0.00000000      0.00000000
397         0.63157892        0.63636363    0.63636363      0.63636363
398         0.53571427        0.50000000    0.50000000      0.50000000
399         0.72549021        0.73076922    0.73076922      0.73076922
400         0.50000000        0.45454547    0.45454547      0.45454547
401         0.85714287        0.69999999    0.69999999      0.69999999
402         1.00000000        1.00000000    1.00000000      1.00000000
403         0.66666669        0.66666669    0.66666669      0.66666669
404         0.33333334        0.50000000    0.50000000      0.50000000
405         0.33333334        0.33333334    0.33333334      0.33333334
406         0.40000001        0.40000001    0.20000000      0.40000001
407         0.60000002        0.60000002    0.60000002      0.60000002
408         0.25000000        0.25000000    0.25000000      0.25000000
409         1.00000000        1.00000000    1.00000000      1.00000000
410         0.50000000        0.50000000    0.50000000      0.50000000
411         0.00000000        0.00000000    0.00000000      0.00000000
412         1.00000000        1.00000000    1.00000000      1.00000000
413         0.00000000        0.00000000    0.00000000      0.00000000
414         1.00000000        1.00000000    1.00000000      1.00000000
415         0.00000000        0.00000000    0.00000000      0.00000000
416         0.00000000        0.00000000    0.00000000      0.00000000
417         0.33333334        1.00000000    1.00000000      1.00000000
418         1.00000000        1.00000000    1.00000000      1.00000000
419         0.50000000        0.66666669    0.66666669      0.66666669
420         0.68750000        0.64705884    0.64705884      0.64705884
421         0.63999999        0.62068963    0.58620691      0.62068963
422         0.81818181        0.89999998    0.89999998      0.89999998
423         0.75862068        0.78571427    0.78571427      0.78571427
424         1.00000000        1.00000000    1.00000000      1.00000000
425         1.00000000        1.00000000    1.00000000      1.00000000
426         0.00000000        0.00000000    0.00000000      0.00000000
427         0.00000000        0.00000000    0.00000000      0.00000000
428         0.25000000        0.25000000    0.25000000      0.25000000
429         0.42857143        0.50000000    0.50000000      0.50000000
430         0.37500000        0.37500000    0.37500000      0.37500000
431         0.30769232        0.27272728    0.27272728      0.27272728
432         0.31250000        0.37500000    0.37500000      0.50000000
433         0.12500000        0.10000000    0.10000000      0.10000000
434         0.00000000        0.00000000    0.00000000      0.28571430
435         0.33333334        0.35714287    0.35714287      0.50000000
436         0.16666667        0.18181819    0.18181819      0.18181819
437         0.50000000        0.50000000    0.50000000      0.50000000
438         1.00000000        1.00000000    1.00000000      1.00000000
439         1.00000000        1.00000000    1.00000000      1.00000000
440         1.00000000        1.00000000    1.00000000      1.00000000
441         1.00000000        1.00000000    1.00000000      1.00000000
442         0.50000000        0.50000000    0.50000000      0.50000000
443         0.33333334        0.33333334    0.33333334      0.33333334
444         0.88235295        0.84210527    0.84210527      0.84210527
445         0.72727275        0.81818181    0.81818181      0.81818181
446         0.66666669        0.66666669    0.66666669      0.66666669
447         0.66666669        0.69999999    0.69999999      0.69999999
448         0.60000002        0.64285713    0.64285713      0.64285713
449         0.89999998        0.90909094    0.90909094      0.90909094
450         0.89285713        0.89285713    0.89285713      0.89285713
451         1.00000000        1.00000000    1.00000000      1.00000000
452         0.83333331        0.83333331    0.83333331      0.83333331
453         0.80000001        0.80000001    0.80000001      0.80000001
454         1.00000000        1.00000000    1.00000000      1.00000000
455         1.00000000        1.00000000    1.00000000      1.00000000
456         0.75000000        0.75000000    0.75000000      0.75000000
457         0.40000001        0.40000001    0.40000001      0.40000001
458         0.40000001        0.40000001    0.40000001      0.40000001
459         0.75000000        0.75000000    0.75000000      0.75000000
460         1.00000000        1.00000000    1.00000000      1.00000000
461         1.00000000        1.00000000    1.00000000      1.00000000
462         0.00000000        0.00000000    0.00000000      0.00000000
463         1.00000000        1.00000000    1.00000000      1.00000000
464         0.00000000        0.00000000    0.00000000      0.00000000
465         0.00000000        0.00000000    0.00000000      0.00000000
466         0.00000000        0.00000000    0.00000000      0.00000000
467         0.00000000        0.00000000    0.00000000      0.00000000
468         0.20000000        0.20000000    0.20000000      0.20000000
469         0.33333334        0.33333334    0.33333334      0.33333334
470         0.00000000        0.00000000    0.00000000      0.00000000
471         0.50000000        0.33333334    0.33333334      0.33333334
472         0.12500000        0.12500000    0.12500000      0.12500000
473         0.23529412        0.07142857    0.07142857      0.07142857
474         0.57142860        0.66666669    0.66666669      0.66666669
475         0.30000001        0.30000001    0.30000001      0.30000001
476         0.00000000        0.00000000    0.00000000      0.00000000
477         1.00000000        1.00000000    1.00000000      1.00000000
478         0.66666669        0.66666669    0.66666669      0.66666669
479         0.69999999        0.72727275    0.72727275      0.72727275
480         1.00000000        0.77777779    0.77777779      0.77777779
481         0.50000000        0.33333334    0.33333334      0.33333334
482         0.50000000        0.50000000    0.50000000      0.50000000
483         0.75000000        0.75000000    0.75000000      0.75000000
484         1.00000000        1.00000000    1.00000000      1.00000000
485         1.00000000        1.00000000    1.00000000      1.00000000
486         1.00000000        1.00000000    1.00000000      1.00000000
487         0.00000000        0.00000000    0.00000000      0.00000000
488         0.00000000        0.00000000    0.00000000      0.00000000
489         1.00000000        1.00000000    1.00000000      1.00000000
490         0.50000000        0.50000000    0.50000000      0.50000000
491         1.00000000        1.00000000    1.00000000      1.00000000
492         0.50000000        1.00000000    1.00000000      1.00000000
493         0.31250000        0.50000000    0.50000000      0.50000000
494         1.00000000        1.00000000    1.00000000      1.00000000
495         0.00000000        0.00000000    0.00000000      0.00000000
496         0.00000000        0.00000000    0.00000000      0.00000000
497         0.00000000        0.00000000    0.00000000      0.00000000
498         0.66666669        0.66666669    0.66666669      0.66666669
499         0.28571430        0.28571430    0.28571430      0.28571430
500         0.36363637        0.40000001    0.40000001      0.40000001
501         0.00000000        0.00000000    0.00000000      0.00000000
502         0.00000000        0.00000000    0.00000000      0.00000000
503         1.00000000        1.00000000    1.00000000      1.00000000
504         0.00000000        0.00000000    0.00000000      0.00000000
505         0.00000000        0.00000000    0.00000000      0.00000000
506         0.00000000        0.00000000    0.00000000      0.00000000
507         0.24444444        0.28947368    0.28947368      0.28947368
508         0.32307693        0.37288135    0.37288135      0.37288135
509         0.54929578        0.61240309    0.60465115      0.61240309
510         0.14634146        0.10000000    0.10000000      0.10000000
511         0.52380955        0.52272725    0.50000000      0.52272725
512         0.52459013        0.51612902    0.51612902      0.51612902
513         0.40909091        0.43478259    0.43478259      0.43478259
514         0.34313726        0.34653464    0.34653464      0.35643566
515         0.28813559        0.29824561    0.28070176      0.31578946
516         0.54166669        0.64999998    0.64999998      0.64999998
517         0.30000001        0.33333334    0.33333334      0.33333334
518         0.40625000        0.41935483    0.41935483      0.41935483
519         0.27272728        0.33333334    0.33333334      0.33333334
520         0.60000002        1.00000000    1.00000000      1.00000000
521         0.00000000        0.00000000    0.00000000      0.00000000
522         1.00000000        1.00000000    1.00000000      1.00000000
523         0.00000000        0.00000000    0.00000000      0.00000000
524         0.66666669        0.66666669    0.66666669      0.66666669
525         0.50000000        0.50000000    0.50000000      0.50000000
526         0.80000001        0.80000001    0.80000001      0.80000001
527         0.00000000        0.00000000    0.00000000      0.00000000
528         0.00000000        0.00000000    0.00000000      0.00000000
529         1.00000000        1.00000000    1.00000000      1.00000000
530         0.00000000        0.00000000    0.00000000      0.00000000
531         0.00000000        0.00000000    0.00000000      0.00000000
532         0.00000000        0.00000000    0.00000000      0.00000000
533         0.00000000        0.00000000    0.00000000      0.00000000
534         0.00000000        0.00000000    0.00000000      0.00000000
535         0.00000000        0.00000000    0.00000000      0.00000000
536         0.66666669        0.80000001    0.80000001      0.80000001
537         1.00000000        0.80000001    0.80000001      0.80000001
538         1.00000000        1.00000000    1.00000000      1.00000000
539         0.53846157        0.50000000    0.43750000      0.50000000
540         1.00000000        1.00000000    1.00000000      1.00000000
541         0.33333334        0.33333334    0.33333334      0.33333334
542         0.00000000        0.00000000    0.00000000      0.00000000
543         0.50000000        1.00000000    1.00000000      1.00000000
544         0.66666669        0.66666669    0.66666669      0.66666669
545         0.33333334        0.36363637    0.36363637      0.36363637
546         0.35714287        0.50000000    0.50000000      0.50000000
547         0.18750000        0.33333334    0.33333334      0.33333334
548         0.28571430        0.47826087    0.47826087      0.47826087
549         0.16666667        0.36363637    0.36363637      0.36363637
550         0.21621622        0.38095239    0.38095239      0.38095239
551         0.37704918        0.57499999    0.57499999      0.57499999
552         0.00000000        0.00000000    0.00000000      0.00000000
553         1.00000000        1.00000000    1.00000000      1.00000000
554         0.00000000        0.00000000    0.00000000      0.00000000
555         0.50000000        0.50000000    0.50000000      0.50000000
556         0.35483870        0.42307693    0.42307693      0.42307693
557         0.63636363        0.73684210    0.73684210      0.73684210
558         0.69999999        0.75000000    0.75000000      0.75000000
559         0.66666669        0.66666669    0.66666669      0.66666669
560         0.50000000        0.50000000    0.50000000      0.50000000
561         1.00000000        1.00000000    1.00000000      1.00000000
562         0.00000000        0.00000000    0.00000000      0.00000000
563         0.00000000        0.00000000    0.00000000      0.00000000
564         0.00000000        0.00000000    0.00000000      0.00000000
565         0.00000000        0.00000000    0.00000000      0.00000000
566         0.00000000        0.00000000    0.00000000      0.00000000
567         0.00000000        0.00000000    0.00000000      0.00000000
568         0.33333334        0.33333334    0.33333334      0.33333334
569         0.00000000        0.00000000    0.00000000      0.00000000
570         0.00000000        0.00000000    0.00000000      0.00000000
571         1.00000000        1.00000000    0.50000000      1.00000000
572         1.00000000        1.00000000    0.50000000      1.00000000
573         1.00000000        1.00000000    1.00000000      1.00000000
574         0.50000000        0.50000000    0.50000000      0.50000000
575         0.00000000        0.00000000    0.00000000      0.00000000
576         0.00000000        0.00000000    0.00000000      0.00000000
577         1.00000000        1.00000000    1.00000000      1.00000000
578         0.00000000        0.00000000    0.00000000      0.00000000
579         0.00000000        0.00000000    0.00000000      0.00000000
580         0.00000000        0.00000000    0.00000000      0.00000000
581         0.50000000        0.50000000    0.50000000      0.50000000
582         0.57142860        0.55555558    0.55555558      0.66666669
583         0.48888889        0.48148149    0.40740740      0.48148149
584         0.31250000        0.39534885    0.32558140      0.39534885
585         0.40000001        0.43396226    0.41509435      0.43396226
586         0.28000000        0.29577464    0.26760563      0.29577464
587         0.28415301        0.32317072    0.31097561      0.32317072
588         0.64814812        0.68518519    0.68518519      0.68518519
589         1.00000000        1.00000000    1.00000000      1.00000000
590         0.00000000        0.00000000    0.00000000      0.00000000
591         1.00000000        1.00000000    1.00000000      1.00000000
592         0.00000000        0.00000000    0.00000000      0.00000000
593         0.00000000        0.00000000    0.00000000      0.00000000
594         1.00000000        1.00000000    1.00000000      1.00000000
595         0.00000000        0.00000000    0.00000000      0.00000000
596         1.00000000        1.00000000    1.00000000      1.00000000
597         0.66666669        0.66666669    0.66666669      0.66666669
598         0.00000000        0.00000000    0.00000000      0.00000000
599         0.50000000        0.50000000    0.50000000      0.50000000
600         0.00000000        0.00000000    0.00000000      0.00000000
601         0.00000000        0.00000000    0.00000000      0.00000000
602         1.00000000        1.00000000    1.00000000      1.00000000
603         1.00000000        1.00000000    1.00000000      1.00000000
604         0.00000000        0.00000000    0.00000000      0.00000000
605         1.00000000        1.00000000    1.00000000      1.00000000
606         1.00000000        1.00000000    1.00000000      1.00000000
607         0.66666669        0.66666669    0.66666669      0.66666669
608         0.00000000        0.00000000    0.00000000      0.00000000
609         0.00000000        0.00000000    0.00000000      0.00000000
610         0.00000000        0.00000000    0.00000000      0.00000000
611         0.33333334        0.33333334    0.33333334      0.33333334
612         0.75000000        0.80000001    0.80000001      0.80000001
613         0.00000000        0.00000000    0.00000000      0.00000000
614         0.00000000        0.50000000    0.50000000      0.50000000
615         0.37500000        0.37500000    0.37500000      0.37500000
616         0.58333331        0.69230771    0.69230771      0.69230771
617         0.37500000        0.39130434    0.39130434      0.43478259
618         0.37037036        0.40000001    0.40000001      0.40000001
619         0.66666669        0.68571430    0.68571430      0.68571430
620         0.00000000        0.00000000    0.00000000      0.00000000
621         0.75000000        0.75000000    0.75000000      0.75000000
622         1.00000000        1.00000000    1.00000000      1.00000000
623         1.00000000        0.50000000    0.50000000      0.50000000
624         0.00000000        0.00000000    0.00000000      0.00000000
625         0.40000001        0.33333334    0.33333334      0.33333334
626         0.32499999        0.32499999    0.32499999      0.32499999
627         0.36363637        0.34375000    0.34375000      0.34375000
628         0.33333334        0.38461539    0.38461539      0.38461539
629         0.50000000        0.50000000    0.50000000      0.50000000
    softratio_utilities secessionist softratio_new_lag _est_m1 _est_m2 _est_m3
1            0.50000000            0        0.00000000       1       1       1
2            1.00000000            1        0.00000000       1       1       1
3            1.00000000            1        1.00000000       1       1       1
4            1.00000000            1        1.00000000       1       1       1
5            0.71428573            1        1.00000000       1       1       1
6            0.88888890            1        0.71428573       1       1       1
7            0.56250000            1        0.89999998       1       1       1
8            0.85714287            1        0.56250000       1       1       1
9            0.93333334            1        0.85714287       1       1       1
10           0.50000000            1        0.93333334       1       1       1
11           0.60000002            1        0.50000000       1       1       1
12           0.66666669            1        0.60000002       1       1       1
13           0.66666669            1        0.66666669       1       1       1
14           0.16666667            1        0.66666669       1       1       1
15           0.00000000            0        0.00000000       1       1       1
16           1.00000000            0        0.00000000       1       1       1
17           0.00000000            0        0.00000000       1       1       1
18           0.50000000            1        0.00000000       1       1       1
19           0.81250000            1        0.50000000       1       1       1
20           0.85000002            1        0.81250000       1       1       1
21           0.73333335            1        0.85000002       1       1       1
22           0.57142860            1        0.73333335       1       1       1
23           0.53333336            1        0.57142860       1       1       1
24           0.71428573            1        0.53333336       1       1       1
25           0.89473683            1        0.71428573       1       1       1
26           0.00000000            1        0.00000000       1       1       1
27           0.00000000            1        0.00000000       1       1       1
28           0.50000000            1        0.00000000       1       1       1
29           1.00000000            0        0.00000000       1       1       1
30           1.00000000            0        0.00000000       1       1       1
31           0.00000000            1        0.00000000       1       1       1
32           0.00000000            1        0.00000000       1       1       1
33           0.00000000            1        0.00000000       1       1       1
34           0.00000000            1        0.00000000       1       1       1
35           0.00000000            1        0.00000000       1       1       1
36           0.00000000            1        0.00000000       1       1       1
37           0.00000000            0        0.00000000       1       1       1
38           0.20408164            0        0.16666667       1       1       1
39           0.60000002            0        0.20408164       1       1       1
40           0.38235295            0        0.60000002       1       1       1
41           0.41176471            0        0.00000000       1       1       1
42           0.75000000            0        0.00000000       1       1       1
43           1.00000000            1        0.00000000       1       1       1
44           0.50000000            1        0.00000000       1       1       1
45           1.00000000            1        0.00000000       1       1       1
46           1.00000000            0        0.00000000       1       1       1
47           1.00000000            0        1.00000000       1       1       1
48           1.00000000            0        0.88888890       1       1       1
49           0.88888890            0        1.00000000       1       1       1
50           1.00000000            0        0.88888890       1       1       1
51           0.50000000            0        0.00000000       1       1       1
52           0.25000000            0        0.00000000       1       1       1
53           1.00000000            0        0.25000000       1       1       1
54           0.00000000            0        1.00000000       1       1       1
55           0.00000000            0        0.00000000       1       1       1
56           0.22222222            0        0.00000000       1       1       1
57           0.50000000            0        0.00000000       1       1       1
58           0.40000001            0        0.50000000       1       1       1
59           0.00000000            0        0.00000000       1       1       1
60           0.00000000            0        0.00000000       1       1       1
61           1.00000000            0        0.00000000       1       1       1
62           1.00000000            0        1.00000000       1       1       1
63           1.00000000            1        0.00000000       1       1       1
64           0.00000000            1        1.00000000       1       1       1
65           0.75000000            1        0.00000000       1       1       1
66           0.27419356            1        0.75000000       1       1       1
67           0.23999999            1        0.27419356       1       1       1
68           0.12195122            1        0.23999999       1       1       1
69           0.22222222            1        0.12195122       1       1       1
70           0.18181819            1        0.22222222       1       1       1
71           0.00000000            1        0.18181819       1       1       1
72           1.00000000            1        0.00000000       1       1       1
73           0.33333334            1        1.00000000       1       1       1
74           0.72727275            0        0.00000000       1       1       1
75           0.83333331            0        0.69090909       1       1       1
76           0.89999998            0        0.83333331       1       1       1
77           0.90909094            0        0.89999998       1       1       1
78           0.55555558            0        0.90909094       1       1       1
79           0.71428573            0        0.55555558       1       1       1
80           0.86666667            0        0.71428573       1       1       1
81           0.77777779            0        0.86666667       1       1       1
82           0.89999998            0        0.77777779       1       1       1
83           1.00000000            0        0.89999998       1       1       1
84           1.00000000            0        1.00000000       1       1       1
85           1.00000000            0        1.00000000       1       1       1
86           0.00000000            1        0.00000000       1       1       1
87           1.00000000            1        0.00000000       1       1       1
88           0.60000002            1        0.00000000       1       1       1
89           0.61538464            1        0.50000000       1       1       1
90           1.00000000            1        0.30769232       1       1       1
91           1.00000000            1        0.00000000       0       0       0
92           1.00000000            1        0.00000000       0       0       0
93           0.71428573            1        0.00000000       1       1       1
94           0.54761904            1        0.71428573       1       1       1
95           0.65714288            1        0.54761904       1       1       1
96           0.11111111            1        0.28571430       1       1       1
97           0.00000000            1        0.11111111       1       1       1
98           0.40909091            1        0.00000000       1       1       1
99           0.51515150            1        0.40909091       1       1       1
100          0.64285713            1        0.51515150       1       1       1
101          0.72727275            1        0.64285713       1       1       1
102          0.64285713            1        0.72727275       1       1       1
103          0.78947371            1        0.50000000       1       1       1
104          0.41176471            1        0.78947371       1       1       1
105          0.33333334            1        0.41176471       1       1       1
106          1.00000000            1        0.00000000       0       0       0
107          0.25000000            1        0.00000000       1       1       1
108          1.00000000            1        0.25000000       1       1       1
109          0.00000000            1        0.00000000       1       1       1
110          0.00000000            1        0.00000000       1       1       1
111          0.50000000            1        0.00000000       1       1       1
112          1.00000000            1        0.00000000       0       0       0
113          0.25000000            0        0.00000000       1       1       1
114          0.70588237            0        0.25000000       1       1       1
115          0.66666669            0        0.70588237       1       1       1
116          0.00000000            0        0.00000000       1       1       1
117          0.00000000            0        0.00000000       1       1       1
118          0.00000000            0        0.00000000       1       1       1
119          0.00000000            0        0.00000000       1       1       1
120          0.00000000            0        0.00000000       1       1       1
121          1.00000000            0        0.00000000       1       1       1
122          0.62500000            1        0.00000000       1       1       1
123          0.71428573            1        0.00000000       1       1       1
124          0.13636364            1        0.80000001       1       1       1
125          0.77777779            1        0.13636364       1       1       1
126          0.00000000            1        0.77777779       1       1       1
127          0.83333331            1        0.00000000       1       1       1
128          0.00000000            1        0.83333331       1       1       1
129          0.50000000            1        0.00000000       1       1       1
130          0.57142860            1        0.00000000       1       1       1
131          0.44444445            1        0.00000000       1       1       1
132          0.66666669            1        0.44444445       1       1       1
133          0.00000000            1        0.66666669       1       1       1
134          0.00000000            0        0.00000000       1       1       1
135          0.00000000            0        0.00000000       1       1       1
136          0.00000000            0        0.00000000       1       1       1
137          0.00000000            0        0.00000000       1       1       1
138          0.00000000            0        0.00000000       1       1       1
139          0.00000000            0        0.00000000       1       1       1
140          0.00000000            0        0.00000000       1       1       1
141          0.00000000            0        0.00000000       1       1       1
142          1.00000000            1        0.00000000       1       1       1
143          0.00000000            1        0.00000000       1       1       1
144          0.04545455            1        0.00000000       1       1       1
145          0.62068963            1        0.04545455       1       1       1
146          0.71428573            1        0.60344827       1       1       1
147          0.60000002            1        0.57142860       1       1       1
148          0.50000000            1        0.60000002       1       1       1
149          0.00000000            1        0.50000000       1       1       1
150          1.00000000            0        0.00000000       1       1       1
151          1.00000000            0        0.00000000       1       1       1
152          0.75000000            0        0.00000000       1       1       1
153          0.50000000            0        0.75000000       1       1       1
154          1.00000000            0        0.50000000       1       1       1
155          0.75000000            0        0.00000000       1       1       1
156          0.37037036            0        0.00000000       1       1       1
157          1.00000000            0        0.00000000       1       1       1
158          0.85714287            0        1.00000000       1       1       1
159          1.00000000            0        0.85714287       1       1       1
160          0.80000001            0        1.00000000       1       1       1
161          0.50000000            0        0.80000001       1       1       1
162          0.00000000            0        0.50000000       1       1       1
163          0.71875000            0        0.00000000       1       1       1
164          0.65625000            0        0.71875000       1       1       1
165          0.80000001            0        0.65625000       1       1       1
166          0.64285713            0        0.80000001       1       1       1
167          0.88235295            0        0.64285713       1       1       1
168          0.83333331            0        0.88235295       1       1       1
169          0.23684211            0        0.83333331       1       1       1
170          0.83333331            0        0.00000000       1       1       1
171          1.00000000            0        0.83333331       1       1       1
172          0.00000000            0        0.00000000       1       1       1
173          1.00000000            0        0.00000000       1       1       1
174          0.00000000            0        0.00000000       1       1       1
175          1.00000000            0        0.00000000       1       1       1
176          1.00000000            0        0.00000000       1       1       1
177          0.40000001            0        0.00000000       1       1       1
178                  NA            0        0.40000001       0       0       1
179          0.33333334            0        0.00000000       1       1       1
180          0.05555556            0        0.33333334       1       1       1
181          0.09523810            0        0.05555556       1       1       1
182          0.00000000            0        0.09523810       1       1       1
183          1.00000000            0        0.00000000       1       1       1
184          0.00000000            0        1.00000000       1       1       1
185          0.00000000            0        0.00000000       1       1       1
186          1.00000000            0        0.00000000       1       1       1
187          1.00000000            0        1.00000000       1       1       1
188          1.00000000            0        0.00000000       1       1       1
189          1.00000000            0        1.00000000       1       1       1
190          0.83333331            0        0.00000000       1       1       1
191          0.00000000            0        0.00000000       1       1       1
192          1.00000000            0        0.00000000       1       1       1
193          0.00000000            0        1.00000000       1       1       1
194          0.50000000            0        0.00000000       1       1       1
195          0.18181819            0        0.50000000       1       1       1
196          0.00000000            0        0.18181819       1       1       1
197          0.12500000            0        0.00000000       1       1       1
198          0.00000000            0        0.12500000       1       1       1
199          0.25000000            0        0.00000000       1       1       1
200          0.33333334            0        0.25000000       1       1       1
201          0.00000000            0        0.33333334       1       1       1
202          0.00000000            0        0.00000000       1       1       1
203          0.00000000            0        0.00000000       1       1       1
204          0.66666669            0        0.00000000       1       1       1
205          1.00000000            1        0.00000000       1       1       1
206          0.83333331            1        1.00000000       1       1       1
207          0.75000000            1        0.83333331       1       1       1
208          0.60000002            1        0.75000000       1       1       1
209          0.85714287            1        0.60000002       1       1       1
210          0.60000002            1        0.85714287       1       1       1
211          0.00000000            1        0.00000000       1       1       1
212          0.00000000            1        0.00000000       1       1       1
213          0.00000000            1        0.00000000       1       1       1
214          0.00000000            1        0.00000000       1       1       1
215          0.33333334            0        0.00000000       1       1       1
216          0.00000000            0        0.33333334       1       1       1
217          0.00000000            0        0.00000000       1       1       1
218          0.00000000            0        0.00000000       0       0       0
219          0.52941179            0        0.00000000       1       1       1
220          0.00000000            1        0.00000000       1       1       1
221          0.25000000            1        0.00000000       1       1       1
222          0.00000000            1        0.25000000       1       1       1
223          0.50000000            1        0.00000000       1       1       1
224          1.00000000            1        0.00000000       1       1       1
225          0.14285715            1        1.00000000       1       1       1
226          1.00000000            1        0.14285715       1       1       1
227          1.00000000            0        0.00000000       1       1       1
228          0.21428572            0        0.00000000       1       1       1
229          1.00000000            0        0.21428572       1       1       1
230          0.00000000            0        1.00000000       1       1       1
231          0.00000000            0        0.00000000       1       1       1
232          0.00000000            0        0.00000000       1       1       1
233          0.00000000            0        0.00000000       1       1       1
234          0.00000000            0        0.00000000       1       1       1
235          0.00000000            0        0.00000000       1       1       1
236          0.16666667            0        0.00000000       1       1       1
237          1.00000000            1        0.00000000       0       0       0
238          1.00000000            1        1.00000000       0       0       0
239          0.97435898            0        0.00000000       1       1       1
240          0.66666669            0        0.00000000       1       1       1
241          0.66666669            0        0.66666669       1       1       1
242          0.00000000            0        0.66666669       1       1       1
243          1.00000000            0        0.00000000       1       1       1
244          0.33333334            0        0.00000000       1       1       1
245          0.66666669            0        0.33333334       1       1       1
246          0.75000000            0        0.00000000       1       1       1
247          0.50000000            0        0.00000000       1       1       1
248          1.00000000            1        0.00000000       1       1       1
249          1.00000000            1        0.00000000       1       1       1
250          0.00000000            1        1.00000000       1       1       1
251          1.00000000            1        0.00000000       1       1       1
252          1.00000000            1        0.00000000       1       1       1
253          0.66666669            1        1.00000000       1       1       1
254          1.00000000            1        0.66666669       1       1       1
255          1.00000000            1        0.00000000       1       1       1
256          0.00000000            1        0.00000000       1       1       1
257          0.00000000            1        0.00000000       0       0       0
258          1.00000000            0        0.00000000       1       1       1
259          0.90909094            0        1.00000000       1       1       1
260          0.00000000            0        0.90909094       1       1       1
261          0.50000000            0        0.00000000       1       1       1
262          0.00000000            1        0.00000000       1       1       1
263          0.42857143            1        0.00000000       1       1       1
264          0.76190478            1        0.42857143       1       1       1
265          0.54545456            1        0.00000000       1       1       1
266          0.53333336            1        0.56521738       1       1       1
267          0.44444445            1        0.53333336       1       1       1
268          0.60000002            1        0.44444445       1       1       1
269          0.46153846            1        0.60000002       1       1       1
270          1.00000000            1        0.42307693       1       1       1
271          0.33333334            1        0.00000000       1       1       1
272          0.16666667            1        0.33333334       1       1       1
273          0.37037036            1        0.16666667       1       1       1
274          0.63636363            1        0.37037036       1       1       1
275          0.50000000            1        0.45454547       1       1       1
276          1.00000000            0        0.00000000       1       1       1
277          1.00000000            0        0.00000000       1       1       1
278          1.00000000            0        1.00000000       1       1       1
279          0.00000000            0        1.00000000       1       1       1
280          1.00000000            0        0.00000000       1       1       1
281          0.00000000            0        1.00000000       1       1       1
282          0.75000000            0        0.00000000       1       1       1
283          1.00000000            0        0.75000000       1       1       1
284          1.00000000            0        1.00000000       1       1       1
285          1.00000000            0        1.00000000       1       1       1
286          1.00000000            0        0.00000000       1       1       1
287          0.00000000            0        1.00000000       1       1       1
288          0.00000000            0        0.00000000       1       1       1
289          0.33333334            0        0.00000000       1       1       1
290          0.38888890            0        0.22222222       1       1       1
291          0.38461539            0        0.38888890       1       1       1
292          1.00000000            0        0.38461539       1       1       1
293          1.00000000            0        1.00000000       1       1       1
294          0.62500000            0        1.00000000       1       1       1
295          0.50000000            0        0.62500000       1       1       1
296          0.40000001            0        0.50000000       1       1       1
297          0.37931034            1        0.00000000       1       1       1
298          0.45714286            1        0.31034482       1       1       1
299          0.43750000            1        0.41904762       1       1       1
300          0.25806451            1        0.34375000       1       1       1
301          0.28571430            1        0.25806451       1       1       1
302          0.22222222            1        0.17142858       1       1       1
303          0.34782609            1        0.22222222       1       1       1
304          0.66666669            1        0.34782609       1       1       1
305          0.00000000            1        0.66666669       1       1       1
306          0.36842105            1        0.00000000       1       1       1
307          0.34146342            1        0.36842105       1       1       1
308          0.40816328            1        0.34146342       1       1       1
309          0.57499999            1        0.40816328       1       1       1
310          1.00000000            0        0.00000000       1       1       1
311          0.86666667            0        1.00000000       1       1       1
312          0.80000001            0        0.86666667       1       1       1
313          0.83333331            0        0.80000001       1       1       1
314          0.77777779            0        0.00000000       1       1       1
315          0.88888890            0        0.77777779       1       1       1
316          0.88888890            0        0.88888890       1       1       1
317          0.89999998            0        0.88888890       1       1       1
318          1.00000000            0        0.89999998       1       1       1
319          0.90909094            0        1.00000000       1       1       1
320          0.66666669            0        0.00000000       1       1       1
321          1.00000000            0        0.00000000       1       1       1
322          0.00000000            0        0.00000000       1       1       1
323          0.40000001            0        0.00000000       1       1       1
324          1.00000000            0        0.00000000       1       1       1
325          1.00000000            0        1.00000000       1       1       1
326          0.50000000            0        1.00000000       1       1       1
327          0.66666669            0        0.50000000       1       1       1
328          0.50000000            0        0.66666669       1       1       1
329          0.00000000            0        0.50000000       1       1       1
330          0.00000000            0        0.00000000       1       1       1
331          0.00000000            0        0.00000000       0       0       0
332          0.00000000            0        0.00000000       0       0       0
333          0.31250000            0        0.00000000       0       0       0
334          0.41379312            0        0.25000000       0       0       0
335          0.20000000            0        0.41379312       0       0       0
336          0.36956522            0        0.20000000       0       0       0
337          0.53846157            0        0.36956522       0       0       0
338          0.53333336            0        0.53846157       0       0       0
339          1.00000000            0        0.00000000       1       1       1
340          1.00000000            0        0.00000000       1       1       1
341          1.00000000            0        0.00000000       1       1       1
342          0.00000000            1        0.00000000       1       1       1
343          0.50000000            1        0.00000000       1       1       1
344          1.00000000            1        0.50000000       1       1       1
345          0.50000000            1        1.00000000       1       1       1
346          0.60000002            1        0.50000000       1       1       1
347          0.64179105            1        0.60000002       1       1       1
348          0.61538464            1        0.62686568       1       1       1
349          0.66666669            1        0.61538464       1       1       1
350          0.57377046            1        0.66666669       1       1       1
351          0.25000000            1        0.49180329       1       1       1
352          0.50000000            1        0.00000000       1       1       1
353          0.50000000            1        0.50000000       1       1       1
354          1.00000000            1        0.00000000       1       1       1
355          0.66666669            1        1.00000000       1       1       1
356          1.00000000            1        0.66666669       1       1       1
357          1.00000000            1        0.00000000       1       1       1
358          1.00000000            1        1.00000000       1       1       1
359          0.00000000            1        0.00000000       1       1       1
360          0.00000000            1        0.00000000       1       1       1
361          0.00000000            0        0.00000000       1       1       1
362          0.00000000            0        0.00000000       1       1       1
363          0.00000000            1        0.00000000       1       1       1
364          0.53333336            1        0.00000000       1       1       1
365          1.00000000            1        0.53333336       1       1       1
366          0.00000000            1        0.00000000       1       1       1
367          1.00000000            1        0.00000000       1       1       1
368          1.00000000            1        0.00000000       0       0       0
369          0.74157304            0        0.00000000       1       1       1
370          0.81250000            0        0.74157304       1       1       1
371          1.00000000            0        0.00000000       1       1       1
372          0.00000000            0        1.00000000       1       1       1
373          0.00000000            0        0.00000000       1       1       1
374          1.00000000            0        0.00000000       1       1       1
375          1.00000000            0        1.00000000       1       1       1
376          0.00000000            0        0.00000000       1       1       1
377          1.00000000            0        0.00000000       1       1       1
378          0.00000000            0        0.00000000       1       1       1
379          0.50000000            0        0.00000000       1       1       1
380          1.00000000            0        0.50000000       1       1       1
381          0.61538464            0        1.00000000       1       1       1
382          0.66666669            1        0.00000000       1       1       1
383          1.00000000            1        0.66666669       1       1       1
384          1.00000000            1        1.00000000       1       1       1
385          1.00000000            1        1.00000000       1       1       1
386          0.00000000            1        1.00000000       1       1       1
387          0.50000000            1        0.00000000       1       1       1
388          0.83333331            1        0.50000000       1       1       1
389          0.75000000            1        0.83333331       1       1       1
390          0.83333331            1        0.00000000       1       1       1
391          0.00000000            1        0.00000000       1       1       1
392          0.23529412            1        0.00000000       1       1       1
393          0.36363637            0        0.00000000       1       1       1
394          0.61320752            0        0.36363637       1       1       1
395          0.41176471            0        0.41509435       1       1       1
396          0.02857143            0        0.40000001       1       1       1
397          0.77272725            0        0.00000000       1       1       1
398          0.59375000            0        0.65217394       1       1       1
399          0.80769229            0        0.50000000       1       1       1
400          0.45454547            0        0.73076922       1       1       1
401          0.69999999            0        0.45454547       1       1       1
402          1.00000000            0        0.69999999       1       1       1
403          0.83333331            0        1.00000000       1       1       1
404          0.50000000            0        0.66666669       1       1       1
405          0.33333334            1        0.00000000       1       1       1
406          0.40000001            1        0.33333334       1       1       1
407          0.60000002            1        0.40000001       1       1       1
408          0.25000000            1        0.60000002       1       1       1
409          1.00000000            1        0.25000000       1       1       1
410          0.50000000            1        1.00000000       1       1       1
411          0.00000000            1        0.50000000       1       1       1
412          1.00000000            1        0.00000000       1       1       1
413          0.00000000            1        0.00000000       1       1       1
414          1.00000000            1        0.00000000       1       1       1
415          0.00000000            1        0.00000000       1       1       1
416          0.00000000            1        0.00000000       1       1       1
417          1.00000000            1        0.00000000       1       1       1
418          1.00000000            0        0.00000000       1       1       1
419          0.66666669            0        0.00000000       1       1       1
420          0.64705884            0        0.66666669       1       1       1
421          0.68965518            0        0.64705884       1       1       1
422          0.89999998            0        0.62068963       1       1       1
423          0.82142860            0        0.89999998       1       1       1
424          1.00000000            0        0.78571427       1       1       1
425          1.00000000            0        0.00000000       1       1       1
426          0.00000000            0        1.00000000       1       1       1
427          0.00000000            0        0.00000000       1       1       1
428          0.25000000            0        0.00000000       1       1       1
429          0.50000000            0        0.25000000       1       1       1
430          0.37500000            0        0.50000000       1       1       1
431          0.27272728            0        0.37500000       1       1       1
432          0.37500000            0        0.33333334       1       1       1
433          0.10000000            0        0.37500000       1       1       1
434          0.00000000            0        0.10000000       1       1       1
435          0.35714287            0        0.00000000       1       1       1
436          0.18181819            0        0.35714287       1       1       1
437          0.50000000            1        0.00000000       1       1       1
438          1.00000000            1        0.00000000       1       1       1
439          1.00000000            1        0.00000000       1       1       1
440          1.00000000            1        1.00000000       1       1       1
441          1.00000000            1        1.00000000       1       1       1
442          0.50000000            0        0.00000000       1       1       1
443          0.33333334            0        0.00000000       1       1       1
444          0.84210527            0        0.33333334       1       1       1
445          0.81818181            0        0.84210527       1       1       1
446          0.66666669            0        0.81818181       1       1       1
447          0.69999999            0        0.66666669       1       1       1
448          0.64285713            0        0.69999999       1       1       1
449          0.95454544            0        0.64285713       1       1       1
450          0.89285713            0        0.90909094       1       1       1
451          1.00000000            0        0.00000000       0       0       0
452          0.83333331            0        1.00000000       0       0       0
453          0.80000001            0        0.83333331       0       0       0
454          1.00000000            0        0.00000000       1       1       1
455          1.00000000            0        0.00000000       1       1       1
456          0.75000000            0        1.00000000       1       1       1
457          0.40000001            0        0.75000000       1       1       1
458          0.40000001            0        0.40000001       1       1       1
459          0.75000000            0        0.00000000       1       1       1
460          1.00000000            0        0.75000000       1       1       1
461          1.00000000            1        0.00000000       1       1       1
462          0.00000000            1        1.00000000       1       1       1
463          1.00000000            1        0.00000000       1       1       1
464          0.00000000            1        0.00000000       1       1       1
465          1.00000000            1        0.00000000       1       1       1
466          0.00000000            1        0.00000000       1       1       1
467          0.00000000            0        0.00000000       0       0       0
468          0.20000000            0        0.00000000       1       1       1
469          0.33333334            0        0.20000000       1       1       1
470          0.00000000            0        0.33333334       1       1       1
471          0.33333334            0        0.00000000       1       1       1
472          0.12500000            0        0.33333334       1       1       1
473          0.07142857            0        0.12500000       1       1       1
474          0.66666669            0        0.07142857       1       1       1
475          0.30000001            0        0.66666669       1       1       1
476          0.00000000            0        0.30000001       1       1       1
477          1.00000000            0        0.00000000       1       1       1
478          0.66666669            0        1.00000000       1       1       1
479          0.72727275            0        0.00000000       1       1       1
480          0.77777779            0        0.72727275       1       1       1
481          0.33333334            0        0.77777779       1       1       1
482          0.50000000            0        0.33333334       1       1       1
483          0.75000000            0        0.50000000       1       1       1
484          1.00000000            0        0.00000000       1       1       1
485          1.00000000            0        0.00000000       1       1       1
486          1.00000000            0        1.00000000       1       1       1
487          0.00000000            0        1.00000000       1       1       1
488          0.00000000            0        0.00000000       1       1       1
489          1.00000000            0        0.00000000       1       1       1
490          0.50000000            0        1.00000000       1       1       1
491          1.00000000            0        0.50000000       1       1       1
492          1.00000000            0        1.00000000       1       1       1
493          0.50000000            0        0.00000000       1       1       1
494          1.00000000            0        0.00000000       1       1       1
495          0.00000000            0        1.00000000       1       1       1
496          0.00000000            0        0.00000000       1       1       1
497          0.00000000            0        0.00000000       1       1       1
498          0.66666669            1        0.00000000       1       1       1
499          0.28571430            1        0.00000000       1       1       1
500          0.40000001            1        0.28571430       1       1       1
501          0.00000000            1        0.40000001       1       1       1
502          0.00000000            1        0.00000000       1       1       1
503          1.00000000            1        0.00000000       1       1       1
504          0.00000000            1        0.00000000       1       1       1
505          0.00000000            0        0.00000000       1       1       1
506          0.00000000            0        0.00000000       1       1       1
507          0.28947368            0        0.00000000       1       1       1
508          0.37288135            0        0.28947368       1       1       1
509          0.62790698            0        0.37288135       1       1       1
510          0.10000000            0        0.61240309       1       1       1
511          0.54545456            0        0.14285715       1       1       1
512          0.53225809            0        0.52272725       1       1       1
513          0.50000000            0        0.51612902       1       1       1
514          0.43564355            0        0.43478259       1       1       1
515          0.43859649            0        0.34653464       1       1       1
516          0.69999999            0        0.29824561       1       1       1
517          0.36666667            0        0.64999998       1       1       1
518          0.48387095            0        0.33333334       1       1       1
519          0.50000000            0        0.41935483       1       1       1
520          1.00000000            1        0.00000000       1       1       1
521          0.00000000            0        0.00000000       1       1       1
522          1.00000000            0        0.00000000       1       1       1
523          0.00000000            0        1.00000000       1       1       1
524          0.66666669            0        0.00000000       1       1       1
525          0.50000000            0        0.66666669       1       1       1
526          0.80000001            0        0.50000000       1       1       1
527          0.00000000            0        0.00000000       1       1       1
528          0.00000000            0        0.00000000       1       1       1
529          1.00000000            0        0.00000000       1       1       1
530          0.00000000            0        1.00000000       1       1       1
531          0.00000000            0        0.00000000       1       1       1
532          0.00000000            0        0.00000000       1       1       1
533          0.00000000            0        0.00000000       1       1       1
534          0.00000000            0        0.00000000       1       1       1
535          0.00000000            0        0.00000000       1       1       1
536          0.80000001            0        0.00000000       1       1       1
537          0.80000001            0        0.00000000       1       1       1
538          1.00000000            0        0.80000001       1       1       1
539          0.50000000            0        1.00000000       1       1       1
540          1.00000000            1        0.00000000       1       1       1
541          0.33333334            1        0.00000000       1       1       1
542          0.00000000            1        0.33333334       1       1       1
543          1.00000000            1        0.00000000       1       1       1
544          0.66666669            0        0.00000000       1       1       1
545          0.36363637            0        0.66666669       1       1       1
546          0.50000000            0        0.36363637       1       1       1
547          0.55555558            0        0.50000000       1       1       1
548          0.47826087            0        0.33333334       1       1       1
549          0.45454547            0        0.50000000       1       1       1
550          0.42857143            0        0.36363637       1       1       1
551          0.60000002            0        0.38095239       1       1       1
552          0.00000000            0        0.57499999       1       1       1
553          1.00000000            1        0.00000000       1       1       1
554          0.00000000            1        0.00000000       1       1       1
555          0.50000000            1        0.00000000       1       1       1
556          0.42307693            0        0.00000000       1       1       1
557          0.73684210            0        0.42307693       1       1       1
558          0.75000000            0        0.73684210       1       1       1
559          0.66666669            0        0.75000000       1       1       1
560          0.50000000            0        0.66666669       1       1       1
561          1.00000000            0        0.50000000       1       1       1
562          0.50000000            0        1.00000000       1       1       1
563          0.00000000            0        0.00000000       1       1       1
564          0.00000000            0        0.00000000       1       1       1
565          0.00000000            0        0.00000000       1       1       1
566          0.00000000            0        0.00000000       1       1       1
567          0.00000000            0        0.00000000       1       1       1
568          0.33333334            0        0.00000000       1       1       1
569          0.00000000            0        0.00000000       1       1       1
570          0.00000000            0        0.00000000       1       1       1
571          1.00000000            0        0.00000000       1       1       1
572          1.00000000            0        0.00000000       1       1       1
573          1.00000000            0        1.00000000       1       1       1
574          0.75000000            0        1.00000000       1       1       1
575          0.00000000            0        0.00000000       1       1       1
576          0.00000000            0        0.00000000       1       1       1
577          1.00000000            0        0.00000000       1       1       1
578          0.00000000            0        0.00000000       1       1       1
579          0.00000000            0        0.00000000       1       1       1
580          0.00000000            0        0.00000000       1       1       1
581          0.50000000            0        0.00000000       1       1       1
582          0.55555558            0        0.50000000       1       1       1
583          0.50000000            0        0.55555558       1       1       1
584          0.39534885            0        0.49090910       1       1       1
585          0.44339624            0        0.39534885       1       1       1
586          0.29577464            0        0.43396226       1       1       1
587          0.32317072            0        0.29577464       1       1       1
588          0.70370370            0        0.00000000       1       1       1
589          1.00000000            1        0.00000000       0       0       0
590          0.00000000            1        0.00000000       0       0       0
591          1.00000000            1        0.00000000       0       0       0
592          0.00000000            0        0.00000000       1       1       1
593          0.00000000            0        0.00000000       1       1       1
594          1.00000000            0        0.00000000       1       1       1
595          0.00000000            0        0.00000000       1       1       1
596          1.00000000            0        0.00000000       1       1       1
597          0.66666669            0        0.00000000       1       1       1
598          0.00000000            0        0.66666669       1       1       1
599          0.50000000            0        0.00000000       1       1       1
600          0.00000000            0        0.50000000       1       1       1
601          0.00000000            0        0.00000000       1       1       1
602          1.00000000            0        0.00000000       0       0       0
603          1.00000000            0        1.00000000       0       0       0
604          1.00000000            0        0.00000000       1       1       1
605          1.00000000            0        0.00000000       0       0       0
606          1.00000000            0        1.00000000       0       0       0
607          0.66666669            0        0.00000000       1       1       1
608          0.00000000            1        0.00000000       1       1       1
609          0.00000000            1        0.00000000       1       1       1
610          0.00000000            1        0.00000000       1       1       1
611          0.33333334            1        0.00000000       1       1       1
612          0.80000001            1        0.33333334       1       1       1
613          0.00000000            1        0.80000001       1       1       1
614          0.50000000            1        0.00000000       1       1       1
615          0.37500000            1        0.50000000       1       1       1
616          0.76923078            1        0.37500000       1       1       1
617          0.60869563            1        0.69230771       1       1       1
618          0.60000002            1        0.39130434       1       1       1
619          0.71428573            1        0.40000001       1       1       1
620          0.00000000            1        0.00000000       1       1       1
621          0.75000000            0        0.00000000       1       1       1
622          1.00000000            0        0.75000000       1       1       1
623          0.50000000            0        0.00000000       1       1       1
624          0.00000000            0        0.50000000       1       1       1
625          0.33333334            0        0.00000000       1       1       1
626          0.32499999            0        0.00000000       1       1       1
627          0.34375000            0        0.32499999       1       1       1
628          0.38461539            0        0.36363637       1       1       1
629          0.50000000            0        0.38461539       1       1       1
spss_dat <- rio::import("data/files/journalism.sav")
rio::export(spss_dat, "data/files/journalism2.sav")
spss_dat
   COUNTRY       C9      C10      C11 AUTONOMY     C12A     C12B     C12C
1        1 3.738983 3.738983 4.214286 3.738983 4.310580 4.573379 3.941781
2        2 3.939058 4.019337 3.182336 3.979282 3.422096 4.475000 4.078212
3        3 3.940100 4.046512 3.530680 3.994186 4.071429 4.621667 3.470882
4        4 3.909988 4.203956 3.425373 4.055828 4.408867 4.634449 4.437346
5        5 3.774194 3.861272 2.768997 3.815186 3.311475 4.131498 4.136778
6        6 3.756803 3.923599 3.714530 3.841525 4.337884 4.594915 3.847079
7        7 3.712644 3.318182 3.393258 3.511364 3.930233 4.157303 4.044944
8        8 3.664865 3.756757 4.204301 3.709677 3.863095 4.801075 4.548387
9        9 3.509383 3.589333 3.142466 3.550667 4.125000 4.566489 3.848404
10      10 4.155894 4.281369 3.958175 4.218631 4.460076 4.847909 4.399240
11      12 4.014286 4.138329 3.240356 4.078571 4.119883 4.820513 4.103746
12      13 3.739669 3.771134 3.341772 3.754639 3.521834 4.514706 4.398305
13      14 2.980061 3.203077 2.743472 3.090491 3.698587 4.102804 3.842188
14      15 4.225455 4.141818 3.569369 4.184783 3.189591 4.663620 4.558011
15      16 4.097727 4.200000 3.626692 4.147523 4.388385 4.746835 4.478261
16      17 4.215686 4.269608 4.161765 4.242647 4.206186 4.843137 4.676471
17      18 3.902439 3.993080 3.279310 3.951890 4.532872 4.913495 3.843206
18      19 3.764359 3.931111       NA 3.846465 3.795522 4.512268 3.985130
19      20 3.863388 3.855586 3.591160 3.859673 3.185294 4.479452 4.349862
20      21 3.322500 3.427500 3.138191 3.375000 4.648241 4.356784 4.173367
21      22 3.625000 3.641129 3.619433 3.634538 3.326271 4.604000 3.812500
22      23 4.154982 4.395604 4.065934 4.271898 4.445255 4.700730 4.058394
23      24 3.412607 3.465318 3.416910 3.436963 3.513043 3.839080 4.250000
24      26 3.832418 3.934066 3.852459 3.883562 4.513661 4.546448 4.295082
25      27 3.709251 3.780702 3.440909 3.741228 4.188341 4.726872 4.090909
26      28 3.931669 4.197889 3.388527 4.061761 4.271077 4.590850 4.305990
27      29 3.923077 3.995098 3.605459 3.959658 3.916456 4.745721 4.173267
28      30 3.073753 3.206074 2.331897 3.139009 3.567391 3.991398 3.803419
29      31 3.664908 3.692513 3.311170 3.675462 4.379221 4.496124 4.096104
30      32 4.167568 4.231183 2.913043 4.197861 4.085227 4.755435 4.469945
31      33 3.896750 3.933078 3.884393 3.918251 4.035928 4.434363 4.306163
32      34 3.461774 3.518911 3.564615 3.492436 3.699045 4.507576 3.928244
33      35 3.700658 3.854785 3.369637 3.777961 4.049669 4.631229 3.713333
34      36 4.182353 4.454277 3.000000 4.317647 3.355422 4.643068 4.156627
35      37 3.494949 3.712121 2.930946 3.603535 4.467172 4.604061 4.134518
36      38 3.552561 3.634278       NA 3.593414 3.372813 3.814516 4.218035
37      39 3.707101 3.696165 3.816568 3.694118 3.574194 4.461310 4.077844
38      40 3.906404 4.000000 4.193069 3.953883 4.671717 4.831683 4.502488
39      41 4.191176 4.402941 4.079646 4.297059 4.627976 4.752941 4.188791
40      42 3.824176 3.826816 4.172222 3.818681 3.966887 4.742857 4.505814
41      43 3.436975 3.450000 3.335180 3.441828 3.890141 4.134986 3.925414
42      44 4.048257 4.090426 3.627660 4.070479 3.474667 4.691489 4.352785
43      45 3.995434 4.082192 3.579909 4.040909 4.295455 4.787330 4.194570
44      46 4.312261 4.363985 3.776000 4.338123 3.760234 4.523166 3.814313
45      47 3.992551 4.033582 3.558879 4.012987 3.945283 4.571429 3.832700
46      48 3.602219 3.848580 3.671340 3.723089 3.638710 4.260800 3.295567
47      49 3.250000 3.447471 2.984436 3.348249 4.233463 3.750973 3.902724
48      50 4.014451 4.026012 3.455072 4.020231 3.878613 4.489971 4.146552
49      52 3.985185 4.234568 3.160099 4.108374 4.417284 4.710723 4.216418
50      53 2.775000 2.829268 2.720430 2.751843 3.484594 3.512329 3.185792
51      54 4.068249 4.094118 3.562130 4.080882 4.450000 4.795252 4.233728
52      55 3.720513 3.815385 3.228205 3.767949 3.805128 4.220513 3.825641
53      56 3.799007 3.942928 3.502500 3.872525 3.785166 4.792593 4.527228
54      57 3.689498 3.805430 4.208333 3.754505 3.885000 4.592593 4.425234
55      58 3.648936 3.557895 3.157895 3.605263 3.159574 3.210526 3.138298
56      59 3.788043 3.845946 3.417344 3.816216 3.780822 4.619946 3.972752
57      60 3.389205 3.267045 2.656250 3.328125 3.801136 4.551136 4.329545
58      61 3.961440 4.094872 3.298969 4.025641 3.915385 4.789744 4.383033
59      62 3.750916 3.676471 2.959559 3.712454 4.722628 4.558824 4.558824
60      63 3.993808 4.066023 3.711628 4.019350 4.406838 4.594915 4.047700
61      64 3.880088 4.063806 3.263274 3.971947 4.262115 4.525910 4.208609
62      66 2.444853 2.430147 2.430147 2.437500 3.143382 4.250000 2.628676
63      67 3.768194 3.797844 3.770492 3.783602 4.260163 4.369272 4.228495
64      68 3.957895 3.924731 3.357895 3.947368 4.659574 4.787234 4.308511
65      69 3.677130 3.230088 2.770925 3.435065 3.453659 4.036530 3.824885
66      71 3.899135 4.043228 3.357759 3.970588 4.110951 4.592539 3.806967
67      72 4.240196 4.337408 4.200483 4.289731 4.092010 4.822816 3.793187
       C12D     C12E     C12F     C12G     C12H     C12J     C12K     C12L
1  3.020478 2.741379 2.279310 4.017065 3.882353 3.666667 3.846416 2.206897
2  3.960000 3.686957 3.375723 3.460674 3.832861 1.977208 3.347578 1.942693
3  3.556291 3.426910 2.313953 2.627288 3.025000 1.955000 2.620805 1.585977
4  3.184655 3.034929 2.219321 2.590269 2.955471 2.464096 2.333333 1.274301
5  3.844237 3.518987 3.043919 3.685897 4.160991 2.543726 4.186709 2.935593
6  3.376991 3.253940 2.761141 2.479789 2.585237 1.447842 2.376838 1.500000
7  3.865169 3.777778 3.404494 3.352273 3.444444 3.044444 3.213483 2.909091
8  4.129730 4.166667 3.073034 3.358696 4.076087 2.623529 4.538462 2.398907
9  3.561170 3.101333 2.654255 3.220745 3.837766 1.768617 3.563830 1.627660
10 3.631179 3.465385 2.695817 3.717557 3.996198 3.007663 4.232824 1.469466
11 3.845029 3.721264 2.513353 2.814925 2.907781 2.039157 2.297386 1.263158
12 3.867713 3.723451 3.361364 3.929185 3.799127 2.052752 3.698901 2.009091
13 3.135008 3.186813 2.771654 3.580343 3.315542 2.437202 3.901408 3.400621
14 4.194444 3.862454 3.819030 4.083333 4.395948 2.468519 4.139147 2.397412
15 4.510909 4.500000 3.465517 3.904236 4.078899 2.343570 4.011111 1.849162
16 3.669951 3.427861 2.759563 3.289340 4.137255 2.646154 4.256158 2.171875
17 3.442105 3.141869 2.909722 2.632509 2.706093 1.541818 2.653571 1.508897
18 4.179583 4.034354 2.931988 2.652954 2.689422 3.245127 2.754703 1.234421
19 4.008403 3.497175 3.574648 3.662050 4.041322 2.231214 4.162011 2.838068
20 4.045226 3.557789 3.600503 4.190955 4.173804 3.572864 4.040201 2.603015
21 4.280000 3.778226 3.910931 4.064257 4.257143 2.197479 4.236000 2.440816
22 3.427007 3.364964 3.153846 3.602190 3.527473 2.450185 3.415441 1.547794
23 3.249267 3.531792 3.153392 3.167647 4.132948 2.266026 4.382609 3.302671
24 3.726027 3.546703 2.373938 3.116343 2.975207 2.077810 2.941504 1.247253
25 3.642534 3.409910 2.439252 2.274038 2.509709 1.354497 2.430052 1.210784
26 2.793566 2.804813 2.095430 2.684840 2.771812 2.271989 2.144986 1.246964
27 3.820197 3.611386 2.393484 2.869347 3.906173 2.236776 3.520000 1.684211
28 4.086022 4.036325 2.988987 3.241379 3.165217 2.340000 2.311111 1.745098
29 3.120643 3.029333 2.609290 3.345109 3.451872 2.421053 3.486631 2.084746
30 3.196721 3.241758 1.389535 1.685714 2.126506 1.781818 2.426752 1.123596
31 3.782779 3.430020 2.941650 3.669960 4.027723 2.942974 4.224652 2.822581
32 3.596923 3.396923 2.842022 3.301538 4.030628 2.673879 3.958009 3.150307
33 3.657807 3.440000 2.534653 2.801347 3.076923 2.309764 2.687075 1.493333
34 3.659574 3.471642 3.336310 4.235821 4.272189 3.220859 3.504478 1.699700
35 3.278772 3.285347 2.540682 2.520725 3.275510 1.518229 1.322078 1.367876
36 4.467026 3.817204 3.727882 3.332886 3.061911 2.235849 3.415094 1.601342
37 3.516517 3.471125 3.300000 3.809668 4.077612 2.757576 3.794562 2.654434
38 3.746193 3.359375 2.924731 4.036458 4.051282 4.090000 4.010050 2.705263
39 3.370149 2.945619 2.678899 3.769461 3.877976 1.838188 3.774390 1.451613
40 4.129412 4.100592 3.779141 4.072289 4.301775 2.980892 4.372781 2.950000
41 3.548023 3.458689 2.988439 3.569061 3.666667 3.266289 3.835196 3.248571
42 4.334225 3.719251 3.896000 4.208000 4.501326 2.402703 4.290667 2.307278
43 3.520362 3.036199 2.861751 3.486239 4.036697 2.724299 3.894009 1.679070
44 2.716535 2.855750 2.412698 2.704950 2.663968 3.263158 2.158317 1.535211
45 3.685221 3.604207 2.422925 2.798058 3.069098 2.078947 2.629482 1.460039
46 2.961603 2.858333 2.953255 2.812183 2.957770 2.558923 2.630137 1.560477
47 3.299611 3.431907 3.190661 3.747082 4.031128 2.540856 4.035019 3.350195
48 4.181556 3.991329 3.293103 3.804035 4.302594 2.773639 4.014409 2.371758
49 4.141791 4.056650 2.861728 2.817955 3.347395       NA 3.523573 1.642680
50 2.577778 2.612903 2.931818 3.656000 3.643979 1.958730 3.582011 3.343008
51 3.401786 3.095238 2.748503 3.302671 4.080119 2.201201 4.014881 1.633136
52 2.964103 2.833333 2.433333 3.423077 3.869231 2.335897 3.593830 2.005128
53 3.927861 3.871859 3.140306 4.100251 4.131514 2.890306 4.177945 2.000000
54 4.165138 3.497630 3.492823 3.867647 4.516129 2.644670 4.561644 2.770335
55 3.303371 3.129032 3.091954 3.130435 3.172043 2.919540 3.202128 3.080460
56 3.620219 3.632153 2.244186 3.274788 3.615804 2.047198 3.464088 1.767442
57 4.342857 4.369628 3.745714 3.019943 3.698006 2.709402 3.390313 1.994286
58 4.168831 4.142487 3.134367 3.501292 3.899225 2.448819 3.600000 1.852332
59 4.392593 4.369963 3.579336 4.643123 4.722628 3.124542 4.792727 2.832727
60 4.352641 4.197615 2.495528 2.617857 2.980565 2.784965 2.104015 1.366372
61 3.251378 3.068357 2.590255 2.519016 2.595078 2.556425 2.263158 1.289532
62 4.283088 2.720588 4.257353 4.275735 4.367647 1.981618 4.444853 2.213235
63 4.048649 3.900000 3.777778 3.736986 4.024523 3.742210 4.121294 3.677778
64 4.139785 3.612903 3.739130 4.074468 4.193548 3.000000 3.411111 2.086022
65 3.367150 2.871429 2.630542 3.849765 3.230366 1.726257 4.076923 4.137931
66 3.261128 3.612335 2.288490 2.719298 2.765579 1.928896 2.443439 1.432268
67 4.325183 3.890244 2.088452 2.396552 2.720874 2.302211 2.325269 1.506112
       C12M     C12O     C12P     C12R     C12S     C12T     C12U     C12W
1  2.062284 3.243986 4.136519 3.501706 3.328767 2.136986 4.058219 3.979522
2  2.511628 2.827195 3.161560 2.907563 3.760563 3.278873 3.955556 3.451253
3  1.554077 3.519868 3.697020 3.023140 3.593333 2.447934 3.941860 4.290216
4  1.335989 3.366995 3.732515 3.702337 3.671717 3.323194 3.421777 3.546366
5  2.763441 3.162338 4.157407 3.451923 3.738854 3.087413 4.205521 4.192073
6  1.486583 2.784615 2.897436 2.962069 3.431065 2.520211 3.518836 3.710993
7  2.955556 3.300000 3.655556 3.766667 4.100000 3.777778 4.233333 4.078652
8  3.213115 3.728261 4.038043 3.951351 4.240437 3.810811 4.510870 4.704301
9  2.034574 2.694149 3.359043 3.090426 3.702128 3.194149 4.079787 3.287234
10 1.603846 3.091954 3.505703 3.429658 3.794677 2.973180 4.456274 4.498099
11 1.244118 2.543103 2.778736 2.616279 3.902017 2.933333 3.879056 4.617143
12 2.569507 3.298475 3.594421 3.440789 3.677852 2.917431 3.960440 4.043384
13 3.535826 3.170347 3.703588 3.765258 3.352025 3.045383 3.663551       NA
14 3.026071 3.905556 3.862132 3.593750 4.047970 3.663586 4.261029 4.393773
15 1.880228 2.570902 3.016423 3.396364 4.266788 4.000000 4.421338       NA
16 1.942708 2.187192 2.705882 2.627451 3.108374 2.691176 3.877451       NA
17 1.347670 2.958042 3.087719 2.929078 3.172535 2.318182 3.825784 3.494737
18 1.112018 2.288148 2.195556 2.920295 4.422337 2.942921 3.477843 3.261869
19 3.201705 2.866667 3.865169 3.924791 3.816156 3.666667 4.235457 4.269444
20 2.608040 3.108040 3.836272 3.896985 4.271357 4.206030 4.288945       NA
21 3.036735 3.097166 3.754032 3.622490 4.056452 3.578947 4.297189 4.316000
22 1.767528 3.220588 4.234432 3.545788 3.289377 2.934066 4.058608 4.247191
23 3.514706 3.977077 4.252149 4.234957 4.034483 3.846377 4.144092 4.318966
24 1.201681 2.989011 3.341530 3.221311 3.608815 2.569863 3.844262 3.457534
25 1.261084 2.259091 2.672646 2.959459 3.877828 3.061033 4.018018       NA
26 1.271255 3.507812 4.003916 3.818774 3.359211 3.102497 3.269634 3.597113
27 1.426768 2.567500 2.771930 3.278061 3.975062 3.139303 4.407960 3.420398
28 1.897380 2.459052 3.144086 3.258547 3.441810 2.980435 3.818182       NA
29 2.202857 3.788512 3.744125 3.584856 3.240642 2.853659 3.585106 3.804533
30 1.084270 3.217391 3.171271 2.645349 3.120000 1.994048 3.802260 4.311475
31 3.008032 3.428858 3.939096 3.631474 3.766932 3.417323 4.282651 4.327381
32 3.264840 3.586364 3.959091 3.481651 3.811263 3.592366 4.116490 4.357686
33 1.382550 3.096990 3.368771 2.761589 3.417508 2.488294 3.701342 3.933333
34 1.620795 2.825444 3.571429 3.630952 3.728916 2.740964 3.898204 3.115385
35 1.323834 2.652956 3.094388 2.734694 3.149100 2.718346 3.822622       NA
36 1.694892 3.014805 3.263795 3.249326 4.270525 3.465054 2.827957       NA
37 3.250765 3.478916 3.781155 3.830357 3.734568 3.387387 4.231231 4.500000
38 2.200000 3.264249 3.803030 3.758794 3.463542 2.884817 4.150754 4.145729
39 1.796053 2.854985 3.529940 3.097264 3.456193 3.285285 4.028470 4.097059
40 3.500000 3.886228 4.276471 3.945455 4.289941 4.017964 4.540230 4.476744
41 3.474860 3.466667 3.883657 3.742382 3.750693 3.170391 3.947514 4.198324
42 3.069892 3.288000 4.085106 3.710106 4.365333 3.712000 4.500000 4.047872
43 2.103286 3.022831 3.766055 3.037037 3.592593 2.967742 4.004587 4.100000
44 1.617530 3.344961 2.848837 3.906977 2.822835 2.611002 3.631274 3.214844
45 1.373016 3.116981 3.271347 2.697318 3.535104 2.718147 3.956274       NA
46 1.313993 2.872381 2.962295 2.690397 3.103506 2.773109 3.662829 4.107372
47 3.319066 3.575875 3.929961 3.762646 3.587549 3.163424 3.673152       NA
48 2.843931 2.913793 3.488506 3.378223 4.166667 3.839542 4.220630 4.616046
49 1.365672 2.437811 2.771712 2.982630 3.713580 2.912718 4.009852 3.435961
50 3.346667 3.325513 3.376771 3.226891 2.775076 2.782353 2.896254       NA
51 1.958457 3.318452 3.805970 3.218289 3.423077 2.781065 4.061947 4.269231
52 2.033333 2.741026 3.941026 3.835897 3.184615 3.100000 3.725641 4.112821
53 1.906329 3.094763 3.468983 3.694236 3.786432 3.057500 4.274314 4.466501
54 3.252381 3.595238 4.009346 4.069124 4.140845 3.586854 4.583333 4.612903
55 3.144444 3.064516 3.157895 3.053191 3.200000 3.056180 3.354839 3.170213
56 1.953353 3.267030 3.676550 3.486413 3.632597 2.681564 4.280323 4.423181
57 2.148148 2.173295 2.909091 3.107955 3.675214 3.544160 3.646724 2.778409
58 2.154450 3.131443 2.953728 3.116279 3.968992 3.712082 4.462725 3.350649
59 2.921053 3.714815 4.521898 4.511029 4.494545 4.072727 4.587591       NA
60 1.033217 2.544041 2.000000 3.232082 4.228041 2.915517 4.411864       NA
61 1.498886 3.126513 3.343234 3.196468 3.792723 3.235619 3.544150 3.113459
62 1.992647 2.871324 4.584559 2.955882 4.301471 4.110294 4.386029 4.371324
63 3.625683 3.762032 4.018717 3.924731 3.956757 3.887978 4.250000       NA
64 1.849462 2.677419 3.648936 3.021505 3.957447 2.913978 4.297872 3.297872
65 4.241706 3.477064 4.108108 3.916279 3.417910 2.974093 3.763285 4.333333
66 1.369466 3.364162 3.300000 2.572700 2.831361 2.200603 3.434402 4.102305
67 1.491484 2.873479 3.519512 2.841849 4.407767 3.291971 4.214112 4.552058
       C12X     C12Z  ROLE_MO  ROLE_IN  ROLE_CO  ROLE_AC     C13A     C13B
1  3.400685 4.068259 2.805745 3.509386 2.143345 3.628555 4.430508 3.469388
2  3.460894 4.167131 3.655817 3.509003 2.218571 2.976852 4.384401 2.756983
3  4.077815 3.689256 3.253581 2.648563 1.573675 3.410468 4.669421 2.978441
4  3.781638 3.797767 3.311201 2.542547 1.305812 3.600163 4.642857 3.030075
5  3.939683 4.411765 3.577133 3.794279 2.870915 3.599800 4.662722 3.242424
6  3.856890 3.591549 3.145833 2.566837 1.496473 2.879457 4.390492 3.288165
7  3.555556 3.677778 3.876852 3.362963 2.933333 3.574074 4.722222 4.139535
8  4.302703 4.540541 4.087814 3.762993 2.806452 3.904122 4.795699 3.227027
9  3.218085 4.252660 3.390736 3.319149 1.831117 3.047872 4.396277 2.760638
10 4.140684 4.349810 3.467997 3.659379 1.541825 3.345374       NA 2.144487
11 4.312139 3.715517 3.589506 2.655777 1.255780 2.643400 4.507163 3.148997
12 3.831140 4.006637 3.557415 3.722163 2.310573 3.450175 4.493750 2.731656
13       NA       NA 3.183979 3.396060 3.468217 3.547619 4.512346 2.821429
14 4.222426 4.487132 3.938459 4.108364 2.714022 3.786935 4.521661 2.604356
15       NA       NA 4.313725 3.870018 1.866853 3.004456 4.690090 2.570384
16       NA 3.955665 3.225082 3.656046 2.038071 2.504902 4.544118 2.752475
17 2.722628 3.839858 3.014994 2.732411 1.425795 2.993612 4.331034 3.372822
18       NA       NA 3.893706 2.761330 1.173673 2.470444 3.975000 3.019188
19 3.994444 4.278552 3.755295 3.870446 3.021067 3.565197 4.789757 2.925824
20       NA       NA 4.020101 4.001047 2.605528 3.613065 4.557500 2.849246
21 3.912000 4.244000 3.923333 4.109333 2.744939 3.489333 4.708000 3.192771
22 3.798479 4.116541 3.256995 3.425487 1.661172 3.669708 4.485401 3.229927
23 4.094286 4.408571 3.670487 3.719914 3.412791 4.156667 3.110145 3.265306
24 4.087912 3.892562 3.362100 2.857991 1.227397 3.185792 4.650273 2.602740
25       NA       NA 3.495556 2.439291 1.233010 2.630952 4.460177 3.111111
26 3.558630 3.797386 3.025272 2.440927 1.258760 3.773454 4.598435 3.148880
27       NA 4.074257 3.635545 3.181204 1.568069 2.883170 4.531250 2.687166
28       NA       NA 3.636396 2.934829 1.827586 2.952026 4.324094 3.298283
29 3.954930 4.047887 3.052951 3.238438 2.146067 3.700601 4.296588 3.294737
30       NA 3.482143 2.901268 1.900273 1.105556 3.022523 4.350000 2.421348
31 4.075547 4.156627 3.595284 3.713581 2.911306 3.661850 4.100580 3.639692
32       NA 4.304700 3.596823 3.531266 3.210725 3.676234 4.771558 2.671733
33 3.782609 3.415282 3.255776 2.779605 1.440199 3.076159 4.366667 3.281457
34 3.431138 4.029762 3.403522 3.832350 1.653731 3.344608 4.288288 3.092814
35       NA       NA 3.116922 2.429389 1.350129 2.838409 4.616162 2.573232
36       NA       NA 4.005027 3.384048 1.647453 3.175839 4.206199 3.435135
37 4.089286 4.283582 3.520896 3.752728 2.942771 3.695351 4.694118 3.558824
38 3.865672 4.505000 3.389706 3.777778 2.469072 3.629085 4.757426 3.217172
39 3.817647 3.613772 3.271386 3.534866 1.630915 3.138643 4.655589 2.978528
40 4.052023 4.283237 4.130747 4.127395 3.201754 4.021073 4.698864 3.000000
41 3.991573 4.163380 3.484160 3.526027 3.364903 3.701465 4.403846 3.715084
42 4.066489 4.549072 4.031028 4.221264 2.689840 3.697171 4.731383 3.363636
43 3.368182 4.109589 3.277526 3.576923 1.891705 3.275758 4.479638 3.348416
44 3.882466 2.765657 2.754183 2.493069 1.583170 3.366858 4.296875 3.605825
45       NA       NA 3.392120 2.737264 1.416667 3.030530 4.642322 3.243396
46       NA       NA 2.932770 2.852657 1.440536 2.840546 4.683043 3.169628
47       NA       NA 3.370623 3.750973 3.334630 3.756161 4.190661 3.614786
48       NA 4.223496 4.044651 3.852436 2.605187 3.259790 4.601156 3.344928
49 3.875931 4.115764 3.710074 3.138752 1.512315 2.734811 4.600496 2.583127
50       NA       NA 2.617406 3.434889 3.334197 3.258706 3.919075 2.805930
51 3.646018 4.117994 3.178431 3.532108 1.792035 3.444608 4.502941 3.106195
52 3.828205 3.761538 3.020513 3.329060 2.019231 3.505983 3.948718 3.487179
53 3.960396 4.555831 3.654762 3.895115 1.961250 3.418519 4.669951 2.622500
54 4.115741 4.388889 3.843093 4.116893 3.013699 3.892157 4.804545 3.525581
55 3.117021 3.152174 3.191228 3.152632 3.127778 3.082456 3.063158 3.138298
56 3.983696 4.051351 3.375337 3.174978 1.869382 3.475292 4.544474 2.771978
57 3.392045 3.772727 3.978395 3.462013 2.072650 2.730114 4.357746 2.378531
58 4.238961 4.518135 3.995716 3.534402 2.003886 3.066667 4.392308 2.582474
59       NA       NA 4.321860 4.433877 2.858696 4.246981 4.789091 4.168498
60       NA 4.062818 3.929195 2.556456 1.202238 2.595883 4.582770 3.302721
61 3.482911 3.451327 3.338932 2.501194 1.393333 3.222589 4.495595 3.237251
62 3.261029 4.558824 3.853860 4.336397 2.102941 3.470588 4.191176 3.177686
63       NA       NA 3.949866 3.912656 3.647297 3.902852 4.756032 3.954301
64 3.336957 3.978495 3.659574 3.864362 1.978723 3.117544 4.404255 2.903226
65 3.791667 4.373874 3.133929 3.463289 4.196759 3.823144 4.746725 3.722727
66 3.778426 3.220264 2.987476 2.567409 1.407519 3.082854 4.563401 3.487663
67       NA 3.426471 3.971953 2.383495 1.507282 3.073850 4.659420 2.673123
       C13C     C13D     C15A     C15B     C15C     C15D     C15E     C15F
1  2.888136 3.006826 3.384083 2.537415 3.224490 3.006920 2.971429 3.388316
2  2.544693 2.269663 3.980282 3.016807 3.501458 3.356707 3.342857 3.605187
3  2.230132 2.494966 3.350993 2.980100 3.727273 2.637324 2.037594 3.790620
4  2.305486 1.954545 3.608861 2.641677 2.915297 2.179355 2.038770 3.090206
5  2.981651 2.382911 3.551084 2.580745 3.427653 3.203333 3.161290 3.819355
6  2.320205 2.726957 3.190068 2.939966 3.235915 2.330341 1.913919 3.451724
7  3.352273 3.425287 4.034091 3.688889 3.922222 3.590909 3.348837 3.577778
8  2.225806 2.772973 3.369048 2.783133 3.916201 3.752809 3.471591 4.422222
9  2.207447 2.308511 3.251445 2.972527 3.464865 3.352617 3.337110 3.653117
10 2.429658 2.733840 4.590038 3.058824 3.426829 3.354167 3.154867 3.814229
11 2.160458 2.698795 3.218023 2.834337 3.353623 2.657407 1.774834 3.185185
12 2.338235 2.411890 3.578366 2.969163 3.793407 3.370288 3.164045 3.718404
13 2.309006 2.554348 3.682390 2.932707 3.669231 3.701700 3.184834 3.635385
14 2.752708 2.023508 3.453382 2.968978 3.776753 3.609982 3.609982 3.801835
15 2.597070 2.090074 3.876364 2.638532 3.144689 2.778189 2.815985 3.429358
16 2.054726 2.689655 3.887255 2.500000 3.920398 4.014778 3.925743 3.736318
17 2.609756 3.517483 4.024476 3.365854 3.602837 3.042857 2.610895 3.434783
18 2.467303 3.116998 3.466165 3.242377 3.469261 2.741204 2.030553 3.626240
19 3.046196 2.596154 3.915254 2.980609 3.632022 3.556497 3.552408 3.670360
20 3.297229 2.634761 4.022161 2.946927 3.485714 3.446475 3.389503 3.922280
21 2.799197 2.530120 3.600000 2.946502 4.060241 3.943320 3.987805 3.983806
22 2.274074 2.333333 3.956204 3.194139 3.265060 2.721569 2.168724 3.314607
23 2.585799 3.533923 3.402941 2.968116 3.835735 3.763006 3.710448 3.965616
24 2.400000 1.972603 3.377410 2.900000 3.434903 2.050147 1.831361 3.779614
25 2.545045 3.058559 3.000000 2.825893 2.891403 2.308411 2.009662 3.234513
26 2.075099 2.025099 3.722074 3.029451 3.267663 2.489768 2.141780 3.339779
27 2.332440 2.749319 4.103627 2.635171 3.168000 3.316354 3.123656 3.078378
28 3.012793 2.871332 3.242826 2.800866 3.504274 3.374459 2.995556 3.347639
29 2.476190 2.912698 4.094488 3.300261 3.674797 3.398352 3.200542 3.446866
30 2.418994 2.494253 3.546961 3.241573 3.250000 1.744318 1.540230 3.323529
31 2.986328 3.083495 3.305955 2.926931 3.654691 3.278008 3.495851 4.083665
32 2.237003 2.471669 3.586039 2.931034 3.347756 3.231884 3.243464 3.597064
33 2.639073 2.782178 3.454861 2.965278 3.557491 2.220588 2.260377 3.613014
34 2.312121 2.746988 4.107143 3.018927 3.424837 2.858268 2.405128 3.173010
35 1.863636 2.314721 3.598985 2.354756 2.799479 2.250660 2.340369 3.203608
36 2.771930 2.962162 3.623149 3.049664 3.433557 3.476510 2.867746 3.347709
37 2.790560 3.086154 3.711310 3.075301 3.943284 3.785075 3.649547 4.201183
38 2.533333 2.663158 3.115607 2.625000 3.090909 2.905263 2.843243 3.347368
39 2.898507 2.745455 4.017647 3.066066 3.257862 2.535826 2.117057 3.329268
40 2.538012 2.994048 3.952663 3.288235 4.071006 3.929412 3.896341 4.283237
41 3.243017 3.058333 3.584958 3.164773 3.638889 3.539106 3.583099 3.843575
42 3.002660 2.925333 3.454545 2.718310 3.728261 3.702186 3.722071 3.946092
43 2.392694 2.536364 3.619266 2.791855 3.350000 2.874419 2.762791 3.577273
44 2.992233 3.135189 3.381139 2.974304 3.192825 2.456522 2.165094 3.308977
45 2.630394 2.634100 3.533465 2.951807 3.428283 2.807771 2.214286 3.540275
46 2.860841 2.549593 3.431373 3.165441 3.280899 1.805118 1.601227 3.516484
47 3.723735 3.241245 3.312253 3.304348 3.435294 3.265625 3.720000 3.755906
48 3.002907 2.776812 3.741176 2.825959 3.638235 3.494118 3.263314 4.029412
49 1.975062 2.395522 3.824934 3.010811 3.405612 2.696594 2.451178 3.805000
50 3.037736 2.325967 2.395137 2.505952 2.713826 2.628788 2.491468 3.383686
51 2.272189 2.394118 3.955882 2.967647 3.185294 2.790560 2.598802 3.477745
52 2.666667 2.717949 3.901299 2.927083 3.593583 3.689008 3.522078 3.306701
53 2.413965 1.927500 3.994885 3.113695 3.424242 3.204663 3.107735 3.681013
54 2.986047 3.722222 3.478947 3.139175 4.018605 3.845411 3.850962 4.291667
55 2.712766 3.032258 3.010989 2.945652 3.053763 2.882353 2.862069 3.064516
56 2.362398 2.494536 3.512465 3.052778 3.846575 3.398876 2.891429 4.084469
57 2.326761 2.160563 3.971751 3.370056 3.940510 3.419263 3.220963 3.627841
58 2.141026 2.166667 3.643590 3.056701 3.753281 3.189974 3.096000 3.543081
59 4.377289 3.669118 4.598425 3.415323 3.743396 3.488462 3.443089 4.196296
60 2.932318 3.530508 3.363636 2.862520 3.488176 2.682353 2.117431 3.317817
61 2.173865 2.360310 3.505017 2.815402 2.930206 2.216445 1.861148 3.015012
62 3.193548 3.188235 4.147059 2.345588 3.738971 4.191176 4.191176 4.091912
63 3.895161 3.866848 3.762803 3.707775 3.908356 3.924731 3.991870 4.043243
64 2.376344 2.118280 2.531915 2.436170 2.623656 2.913978 2.888889 3.297872
65 3.084507 2.671362 3.400000 3.247788 3.678571 3.810811 3.937778 3.596330
66 2.740955 2.787791 3.605067 3.129851 3.439024 2.934579 2.511327 3.773862
67 1.927536 2.113300 3.388889 3.250608 3.721763 3.437340 2.637500 3.735149
       C15G     C15H     C15J     C15K     C15L     C15M     C15N     C16A
1  2.540541 2.418182 3.332155 3.522807 3.802721 4.233898 1.542222 2.284746
2  2.438806 2.456790 2.616099 3.318052 3.571023 4.193820 2.014925 2.578797
3  2.103321 2.129456 3.186242 3.959799 4.026534 4.344942 1.967797 2.066116
4  1.969935 2.102632 2.576774 3.526384 3.701135 3.870064 1.473333 2.093470
5  2.852941 2.303279 3.436860 3.332203 3.276527 4.305810 2.686207 2.000000
6  1.734177 1.815157 2.653097 3.316609 3.562069 4.025554 1.318267 2.147208
7  3.204545 3.176471 3.191011 3.356322 3.352273 3.488636 3.616279 3.577778
8  2.593750 2.616883 3.707602 4.266667 4.127907 4.607735 2.910714 2.140541
9  2.594855 2.684385 3.134111 3.543478 3.857909 4.151515 2.355212 2.417553
10 2.986364 2.887324 3.491935 3.758197 3.765182 4.424710 2.293532 2.605150
11 1.470588 1.537037 2.677116 3.709581 3.779710 4.530086 1.325806 1.911932
12 2.579775 2.656180 2.887133 3.364253 3.791574 4.325942 2.035714 2.194260
13 3.062208 3.038820 3.194099 3.544049 3.351938 3.875000       NA 2.512039
14 3.084404 2.953875 3.249541 2.657459 3.629151 4.187845 2.682657 2.316081
15 2.617375 2.689720 2.916512 3.705989 3.838768 4.278689       NA 2.766727
16 2.725490 2.745098 2.236453 3.542714 4.049020 4.070000 1.242574 1.384236
17 2.304183 2.157088 3.041045 3.909091 3.799308 4.416084 1.541045 2.868056
18 1.656642 2.241239 2.661983 3.599381 3.874813 3.949319       NA 1.891956
19 2.742029 2.952663 3.337143 3.257971 3.495822 4.467213 2.858006 2.677686
20 3.068657 3.069909 3.627660 4.213918 4.041344 4.474227       NA 2.459596
21 3.113445 3.158333 3.209402 3.582645 3.646586 4.360000 2.818182 2.323651
22 2.144487 2.200772 3.205224 3.844444 3.686131 4.281022 1.675889 2.384615
23 2.682390 2.801917 3.139881 3.651163 3.781977 3.617391 3.073171 2.420749
24 1.582317 2.039157 3.019608 3.873596 3.860656 4.338798       NA 2.461326
25 1.853081 1.961538 2.645455 3.271889 3.800000 4.214286       NA 2.285088
26 2.346535 2.428773 2.887534 3.553619 3.677207 4.050667 1.517630 2.005291
27 2.651475 2.314516 2.894879 3.502646 3.716535 4.154450 1.577128 2.020672
28 2.293269 2.237864 2.441527 3.099338 3.424893 3.531453       NA 2.317422
29 2.943243 3.008174 3.390374 3.584906 3.816754 4.015625 2.577640 2.843750
30 1.466292 1.748571 2.070175 3.877907 3.945355 3.819209       NA 2.644444
31 3.211297 3.079914 3.855950 3.940120 4.212598 4.228516 2.556322 2.330116
32 2.670549 2.681898 3.606013 3.682464 3.422777 4.084243 3.021739 2.742814
33 2.067164 1.980769 2.894737 3.839041 3.962199 4.161512 1.545833 2.199336
34 2.397476 1.883333 2.806854 3.432602 3.669670 4.429003 2.125000 2.138643
35 2.084211 2.167979 2.744186 3.111111 3.631043 4.193384       NA 2.030534
36 2.485868 2.321188 2.998649 3.130374 3.746289 3.769959 2.037838 2.449393
37 3.462006 3.375758 3.819820 4.068862 3.902367 4.129794 3.409639 2.729970
38 2.407186 1.916168 3.229412 2.855491 3.663212 4.397906 1.790541 2.178571
39 2.306667 2.137124 2.913043 3.537538 3.559172 3.626866 1.645485 2.226471
40 3.319018 3.037736 3.894410 4.226190 4.081395 4.502890 3.437500 2.874214
41 3.254958 3.298551 3.602857 3.761905 3.783333 3.969780 3.723529 3.104396
42 2.641243 2.903955 3.178161 3.122159 3.561308 4.539894 2.141566 2.185507
43 2.584475 2.837963 3.264840 3.615741 3.654545 4.167421 1.953488 2.350000
44 2.308163 2.232662 2.709459 3.396728 3.526627 3.313253 1.703863 2.207364
45 2.149573 2.210066 3.075547 3.713147 3.871595 4.165692       NA 2.434343
46 1.557940 1.956159 2.374257 2.867089 3.548094 3.923358       NA 2.200361
47 3.332016 3.000000 3.443580 3.980392 2.960938 3.544747       NA 2.666667
48 2.713864 2.654867 3.585799 4.058997 3.911765 4.467456 2.784024 2.284866
49 2.089888 2.362963 2.628834 3.725191 3.975000 4.600503 2.035714 2.248768
50 3.119863 3.081699 2.800000 3.348571 3.194842 2.874627       NA 2.895954
51 2.514970 2.818452 3.251497 3.834320 3.865672 4.251479 1.895833 2.451613
52 2.404762 2.551724 3.071618 2.994792 2.986945 3.167959 2.250000 2.500000
53 2.754190 2.836111 3.208000 3.465608 3.560914 4.386534 2.720930 2.414815
54 3.403141 2.988889 3.725888 4.144186 4.100000 4.435185 2.900552 2.229268
55 2.831461 2.795455 3.159091 2.988764 3.141304 3.387097 3.112360 2.806452
56 2.527859 2.586103 3.553073 4.123626 4.117486 4.570270 2.307463 2.233062
57 3.144886 3.036932 3.598870 3.963277 3.776836 3.813559 2.178470 2.889518
58 2.925620 2.836898 2.827586 3.600000 3.935733 4.392308 1.852632 2.079487
59 3.680000 3.386555 3.954373 4.329630 4.349624 4.661017       NA 2.337037
60 1.837891 2.366667 2.581395 3.554828 3.503077 3.783742       NA 2.193199
61 1.966033 2.116037 2.454002 3.470191 3.552455 3.677095 1.390999 2.304204
62 2.568889 2.502283 1.562249 4.194853 3.166052 3.805147 2.816176 2.253676
63 3.811765 3.785294 3.702479 3.862534 3.798387 4.147849       NA 3.822404
64 2.382979 2.311828 2.565217 2.852632 3.322581 3.462366 2.279570 2.442105
65 3.019802 3.174757 3.538813 3.760000 3.991189 4.017857 3.383260 2.821429
66 2.354575 2.425532 3.261261 3.637594 3.797965 4.097525 1.873874 2.270504
67 1.716749 1.856079 3.095823 3.847291 3.823245 4.589806       NA 2.212560
       C16B     C16C     C16D     C16E     C16F     C16G     C16H     C16J
1  2.077966 3.513605 3.418367 3.829932 3.945763 2.564626 2.133562 1.952055
2  2.740947 3.201133 2.839888 2.920000 3.885475 2.652819 2.448680 2.429825
3  2.370248 3.442053 3.114428 4.076412 3.941569 2.480929 2.300166 2.266998
4  2.056194 2.738520 2.457216 2.768519 3.422280 1.268260 1.366142 1.548177
5  2.150307 3.341463 3.209877 3.900929 3.472131 3.082508 2.067961 2.273312
6  2.348048 2.539116 2.503401 3.164360 3.644828 1.656140 1.473230 1.724138
7  3.617978 4.100000 3.755556 3.666667 4.200000 3.766667 3.494253 3.244444
8  2.655738 3.875000 3.420765 4.402174 4.456044 3.593407 3.195652 2.913043
9  2.643617 3.319149 3.119681 3.098667 3.898936 2.095745 2.058511 2.175532
10 2.110599 3.671875 2.772152 3.765690 4.105263 2.383085 2.090452 2.058824
11 2.217143 2.616046 2.573487 3.684366 3.682927 1.648387 1.745665 1.654179
12 2.349451 3.360440 3.079295 2.903803 3.716484 2.560000 2.138393 2.123874
13 2.658307 3.308642 3.100619 3.573416 3.601236 3.744222 3.337461 3.220657
14 2.520295 3.541436 3.087199 3.637037 3.813996 2.742593 2.523105 2.476015
15 2.674503 3.415162 2.786232 3.594545 3.978339 2.598148 2.113594 2.197393
16 1.843137 2.620690 2.544118 3.410891 4.019704 3.070000 1.750000 1.813725
17 2.429553 3.579310 2.903114 3.954704 4.377622 1.845878 1.571429 1.859649
18 1.926275 2.647736 2.428683 2.762055 2.959904 1.292602 1.879902 2.048007
19 2.743802 3.760218 3.110497 3.806723 4.071233 3.320334 2.983287 2.860724
20 2.606061 3.424242 3.232911 3.435443 3.613636 3.060606 2.704545 2.786802
21 2.467213 3.616000 2.959677 3.406639 4.008065 2.991667 2.903614 2.875502
22 2.208029 3.529197 2.868613 2.940520 4.113139 1.498127 1.783883 1.641026
23 2.268222 3.208824 3.299419 3.797688 3.928161 3.411765 3.625000 3.350000
24 2.281421 2.885246 2.896175 3.994521 3.080332 1.352941 2.240997 1.961219
25 2.415929 2.555556 2.683036 3.156250 3.538117 1.772512 1.477064 1.538813
26 2.202381 3.038411 2.686508 2.960274 3.753020 1.375000 1.241935 1.405369
27 2.103896 2.572917 2.638743 3.448819 3.953125 2.486559 1.902439 1.914439
28 2.540839 2.858079 2.868817 3.000000 3.131291 2.763797 2.320000 2.258352
29 2.591623 3.640625 2.981675 3.490765 3.843342 2.632275 2.008380 2.044693
30 2.071823 2.955801 3.050000 3.029240 4.150000 1.626437 1.605556 1.600000
31 2.542471 3.813230 3.732039 3.972495 4.017682 3.370809 2.798434 2.608696
32 2.762557 3.275229 3.099085 3.834609 3.727412 3.338438 2.428354 2.283969
33 2.485050 3.026667 2.950000 3.736667 3.883721 2.333333 2.156667 2.176667
34 2.342183 3.056213 2.713018 3.185410 3.700599 3.201807 1.808383 1.717262
35 2.159898 2.916244 2.785714 3.010390 3.609694 2.080940 1.513228 1.692708
36 2.541050 3.122476 3.448043 3.020353 3.309589 1.819539 1.924324       NA
37 3.141141 3.996970 3.811940 4.219880 4.201780 3.715569 2.906907 2.479042
38 2.077320 3.195876 3.078534 4.041237 3.765625 2.883598 2.331606 2.187500
39 2.135294 3.244118 2.492625 2.957958 3.814706 1.350148 1.403561 1.382789
40 3.252941 4.100000 3.982249 4.345029 4.202381 3.923077 3.160714 2.822086
41 3.230978 3.702997 3.645777 3.910082 3.945355 3.733516 3.539945 3.335180
42 2.375000 3.888000 2.910082 3.409836 3.973262 3.025424 2.512535 2.518106
43 2.416290 3.795455 3.063348 3.746606 4.203620 2.538813 1.918182 1.815668
44 2.391473 3.034816 2.494094 2.400000 2.686508 1.590909 1.736634 1.776680
45 2.480808 3.186275 2.885312 3.794059 3.827655 2.507795 2.080000 1.963830
46 2.164855 2.734657 2.627057 3.633212 3.666052 1.558541 1.837037 1.932234
47 2.709804 3.492188 3.417969 3.843750 3.746094 3.453125 3.476562 3.117188
48 2.526786 3.213650 3.247024 3.839286 4.131343 3.014837 2.569733 2.379822
49 2.334975 2.985185 2.937965 2.783582 4.099010 1.565432 1.542500 1.598015
50 3.113208 2.798834 3.252149 3.075630 3.083102 2.619335 2.650289 2.683060
51 2.522124 3.905882 3.121302 3.914454 4.326409 2.440476 1.881306 1.802395
52 2.261538 3.428205 3.020513 3.361538 3.635897 2.474359 2.335897 2.238462
53 2.443350 3.014815 2.642680 3.653465 3.761787 2.642500 2.267327 2.268657
54 3.200000 3.762791 3.341232 4.224299 4.234742 3.341969 2.738095 2.518692
55 2.860215 3.107527 2.989247 3.282609 3.150538 3.202247 2.988764 2.931818
56 2.675676 3.700809 3.172507 4.024324 4.097297 2.371191 2.367847 2.284553
57 3.014164 3.657224 3.810198 3.334278 3.966006 2.752841 2.676136 2.661932
58 2.133676 2.956186 2.865633 2.933862 4.030928 2.095361 1.899743 2.424165
59 3.041199 3.712177 3.688213 3.966292 4.048148 3.878229 3.219331 3.157895
60 2.237209 2.812403 2.827372 3.032508 3.635514 1.464286 1.423913 1.733645
61 2.170354 2.535398 2.503876 2.732222 3.486065 1.495506 1.754717 1.874444
62 1.930147 4.036765 1.826923 4.117647 4.069853 4.500000 3.088235 2.621324
63 3.787634 3.895442 3.761773 3.989160 4.013514 3.840108 3.750000 3.754144
64 2.189474 2.810526 2.378947 3.863158 3.557895 3.410526 3.263158 3.180851
65 3.368889 3.569507 3.779817 4.166667 3.963801 3.866667 3.625616 3.260204
66 2.597701 3.415827 3.105036 3.750000 3.766617 2.211480 1.915929 1.944200
67 2.635266 3.374396 2.854722 4.012136 4.014599 2.154242 2.141119 1.946602
       C16K     C16L     C16M     C16N     C16O INFL_POL INFL_ORG INFL_PRO
1  1.559322 1.870307 2.313993 2.600000 1.848797 1.875706 3.141525 3.869831
2  2.107784 2.075362 2.487032 3.324022 1.947853 2.260417 3.459730 3.581308
3  2.124585 2.290698 2.577629 3.449082 2.270903 2.245033 3.099311 4.070055
4  1.757143 1.649351 2.047865 2.775033 1.525490 1.583226 2.571518 3.461550
5  2.234727 2.056106 2.167203 2.621451 2.394040 2.154427 3.427996 3.649707
6  1.815835 1.697436 2.074138 2.868825 1.565295 1.681999 2.766042 3.537620
7  3.089888 2.888889 3.195402 3.454545 3.411111 3.175926 3.607407 3.607963
8  2.434066 2.719780 3.059783 3.606557 2.464481 2.824324 3.893116 4.361351
9  1.992021 2.140957 2.079787 3.303191 2.010638 2.091755 3.438165 3.709530
10 1.863158 2.009852 2.304721 3.133891 2.011050 2.010654 3.409669 3.949745
11 1.544928 1.636103 1.874644 3.112426 1.543605 1.651709 2.805556 3.878646
12 2.166292 2.255079 2.596811 3.186517 1.916479 2.169265 3.515899 3.618903
13 2.513386 2.542453 2.838811 3.176166       NA 2.906878 3.553251 3.586841
14 2.582397 2.655617 3.088398 3.566421       NA 2.561700 3.699150 3.589739
15 2.030189 2.242537 2.428835 3.177449       NA 2.152752 3.043103 3.878309
16 1.679803 1.625616 2.142857 3.334975       NA 1.720588 3.897783 3.814461
17 1.468531 1.646853 2.063158 3.428070 2.135338 1.636863 3.188293 4.087514
18 2.097930 1.849758 2.226984 3.262830       NA 1.981017 3.004415 3.444293
19 2.729577 2.585227 3.058172 3.168975 2.715942 2.791093 3.597489 3.834367
20 2.643939 2.449495 2.848485 3.394937 2.959494 2.644360 3.542094 3.935714
21 2.644628 2.788618 3.117886 3.512000 2.794355 2.806894 3.986667 3.805667
22 1.802198 1.671587 2.255474 3.615385 1.700730 1.723236 2.908088 3.774635
23 2.850000 2.747801 3.038462 3.255132 3.108359 3.146860 3.823095 3.751667
24 1.876033 1.821429 2.066852 3.057534 1.688705 1.973672 2.827186 3.829508
25 1.431193 1.419355 1.799087 2.746606 1.672897 1.466134 2.660088 3.586915
26 1.862850 1.783245 2.287417 3.060484 1.577389 1.580574 2.858366 3.601161
27 1.894595 1.927027 2.291005 3.097884 1.357724 1.912478 3.171212 3.755915
28 2.224719 2.202247 2.318284 2.796053       NA 2.251820 3.302482 3.234716
29 1.899160 1.952778 2.970745 3.338667 1.950000 1.981102 3.401259 3.744703
30 1.620112 1.620112 1.810056 3.348571       NA 1.610497 2.467491 3.767031
31 2.346535 2.374257 3.185910 3.638835 2.972056 2.542714 3.642035 4.053531
32 2.275229 2.175355 2.312789 2.508634 2.344564 2.297294 3.355789 3.740146
33 2.130435 2.106667 2.305369 3.371622 2.096990 2.142222 2.977629 3.914784
34 1.696429 1.586310 2.271386 3.278932 2.272997 1.707108 3.055470 3.668133
35 1.708333 1.613577 2.583548 3.502564       NA 1.633721 2.669011 3.510059
36 1.815115       NA 2.248641       NA 1.971622 1.869771 3.282662 3.400381
37 2.379518 2.674699 2.982036 3.609610 2.728097 2.617808 3.895280 4.101716
38 2.098446 1.994764 2.447917 2.673575 2.312500 2.158076 3.055412 3.759966
39 1.372727 1.498525 2.136095 3.112426 1.372024 1.415683 2.841494 3.494853
40 2.565476 2.940828 3.250000 3.617284 3.035503 2.874020 4.054924 4.265819
41 3.198895 3.096419 3.323288 3.643454 3.386431 3.290174 3.642922 3.865263
42 2.679666 2.377778 2.945799 3.490566 2.628571 2.528455 3.775178 3.733466
43 1.770642 1.784404 2.360731 3.368182 1.861751 1.829563 3.151207 3.878507
44 2.041176 1.982283 2.389105 2.775629 1.477137 1.888509 2.845143 3.047921
45 1.928571 2.087866 2.262097 3.409274       NA 2.024320 3.039083 3.875064
46 1.820037 1.664193 1.871747 2.670433       NA 1.815693 2.623357 3.541312
47 2.839844 2.695312 3.039062 3.550781 3.036000 3.032227 3.544747 3.613619
48 2.234421 2.367953 2.357143 3.113772 2.459701 2.387982 3.607598 4.079657
49 1.612346 1.619403 1.823232 3.377171 1.557789 1.597531 3.181106 3.830665
50 2.556757 2.738544 2.655738 3.234463       NA 2.649474 2.714728 3.070914
51 1.783383 1.746224 2.421687 3.386905 1.907738 1.800885 3.012952 4.034946
52 2.217949 2.187179 2.579487 3.223077 2.117949 2.244872 3.524786 3.229829
53 1.877193 2.071960 2.532338 2.905941 1.915212 2.127572 3.361111 3.761700
54 2.890995 2.746479 3.304762 3.317536 2.644231 2.727064 3.996575 4.222576
55 2.965517 2.811111 2.881720 3.076923 3.081395 2.912088 2.983871 3.188172
56 2.280654 2.627717 2.847411 3.816216 2.227397 2.391285 3.571171 4.186351
57 2.600000 2.752137 2.721591 3.556818 2.485795 2.674479 3.552408 3.770433
58 2.216495 2.365039 2.314433 3.603093 2.088083 2.226221 3.391108 3.782179
59 3.133333 3.119850 2.753731 3.606742 4.026022 3.155904 3.733516 4.229106
60 1.763608 1.776050 1.851163 2.771739       NA 1.674160 2.941377 3.498961
61 1.996652 1.885428 2.236930 2.865256 1.685268 1.877451 2.542133 3.379576
62 2.404412 2.085185 1.527881 3.276753 4.147059 2.551164 4.053309 3.870956
63 3.667590 3.729508 3.699187 3.782842       NA 3.727252 3.962590 3.962433
64 3.021739 2.554348 2.423913 2.847826 2.904255 3.028947 2.921930 3.410000
65 2.795000 2.809045 3.457944 3.596939 3.894737 3.103120 3.738147 3.964894
66 1.997085 2.322674 2.626628 3.220290 1.773669 2.046202 3.198913 3.799449
67 1.647202 1.990315 2.002421 3.216019 2.845036 1.931361 3.367397 4.057810
   INFL_ECO INFL_PER      O4A      O4B      O4C      O4D      O4E      O4F
1  2.787006 2.298305 2.316981 2.251880 1.652830 1.635338 1.902256 2.571429
2  2.494732 2.778855 1.618280 2.642045 2.389831 2.349432 2.505682 1.963173
3  2.503599 2.470523 2.866667 2.705491 2.334992 2.457711 3.812292 3.393688
4  2.220744 2.267418 2.973164 2.627972 2.265449 2.410940 3.240331 3.037344
5  2.895833 2.232055 3.570968 3.013245 2.297030 2.173913 3.344262 2.078947
6  2.077432 2.474901 3.335863 3.251908 2.676190 2.743346 3.267686 3.156190
7  3.185185 3.629630 3.777778 3.766667 3.393258 3.322222 3.211111 3.123596
8  3.014124 2.496396 3.326087 2.918478 2.430939 2.135870 3.265193 3.267760
9  2.776042 2.667996 1.978142 2.366120 1.802740 1.887671 2.606557 2.174863
10 3.115435 2.626615 2.141221 2.169231 1.850575 1.820611 2.015267 2.177606
11 1.903715 2.312500 2.934718 2.690184 2.293413 2.470238 3.727273 2.938235
12 2.713599 2.513348 2.312910 2.540481 1.892544 1.962801 2.571429 2.905908
13 3.097994 2.694187       NA       NA       NA       NA       NA       NA
14 3.094848 2.599091       NA       NA       NA       NA       NA       NA
15 2.745598 2.690734       NA       NA       NA       NA       NA       NA
16 2.568627 1.910948       NA       NA       NA       NA       NA       NA
17 2.484099 2.883162 2.236220 2.169960 1.777344 1.882812 3.145038 3.118321
18 2.224087 2.378855 2.964286 2.546232 2.256988 2.418478 3.632558 3.096974
19 2.990223 2.802989 2.569482 2.820163 2.211382 2.183060 2.608696 2.828338
20 3.284160 2.650376       NA       NA       NA       NA       NA       NA
21 3.160544 2.567604 2.991736 3.020325 2.842105 2.862348 2.991870 3.008097
22 2.529805 2.593674 3.027778 2.984127 2.195219 2.414343 3.797619 3.813492
23 2.862717 2.550476 2.992126 2.853175 2.234127 2.282869 2.948000 2.916335
24 2.273224 2.540528       NA       NA       NA       NA       NA       NA
25 2.170370 2.503655       NA       NA       NA       NA       NA       NA
26 2.583884 2.405826 3.259972 3.061644 2.564384 2.628767 3.603001 3.538776
27 2.625000 2.254522 2.211796 2.173797 1.742627 1.756684 2.530667 2.309333
28 2.310280 2.563966       NA       NA       NA       NA       NA       NA
29 3.113736 2.919897 2.293040 2.071429 2.040741 2.055351 2.729927 2.683636
30 1.748619 2.645719 2.430233 2.452941 2.168605 2.325444 3.306358 3.790960
31 3.382275 2.580625 4.065708 3.746914 2.600414 2.404167 3.871102 3.139583
32 3.007470 2.789844 2.295107 2.712074 2.064122 2.151562 2.487730 2.347095
33 2.341270 2.533223 2.794425 2.554386 2.402098 2.529617 3.307692 2.864111
34 2.377008 2.477517 2.582317 2.265244 2.006135 1.903727 3.483077 2.664634
35 2.336310 2.180135       NA       NA       NA       NA       NA       NA
36 2.601166 2.680761       NA       NA       NA       NA       NA       NA
37 3.544872 2.979351 2.765273 2.875000 2.289902 2.141479 3.164516 2.463023
38 2.504433 2.310000 2.385787 1.974359 1.730570 1.761658 2.214286 3.090909
39 2.462793 2.468627 2.643750 2.850000 2.121118 2.264151 2.640867 3.093168
40 3.395098 3.165725 3.219858 2.591837 2.091549 1.978723 3.430556 2.673469
41 3.376389 3.153533 3.417241 3.237931 2.879725 2.816609 3.470790 3.237113
42 2.900545 2.423460 2.561497 2.450402 1.827957 1.930108 2.225201 1.927614
43 2.895173 2.520362 2.127854 2.195455 1.872146 1.840909 2.427273 2.433790
44 2.409091 2.504798 3.102410 3.044000 2.682000 2.714000 3.485944 3.302000
45 2.518411 2.633853       NA       NA       NA       NA       NA       NA
46 2.022556 2.511209       NA       NA       NA       NA       NA       NA
47 3.258106 2.859375 3.464844 3.476562       NA 2.839844 2.691406 3.031250
48 2.982793 2.548039 2.404908 2.643077 2.101538 2.098462 2.938462 2.549080
49 2.354762 2.489327 2.852500 2.300000 2.158690 2.200501 2.804020 3.193467
50 2.943182 2.843496       NA       NA       NA       NA       NA       NA
51 2.864125 2.647605 1.911504 1.941176 1.572700 1.604106 2.780415 2.547059
52 2.683938 2.556838 2.307692 2.576923 2.210256 2.241026 2.474359 2.466667
53 2.932305 2.632184 2.264631 2.167939 1.686076 1.646465 2.083333 2.399491
54 3.394860 2.846908 2.709677 2.691589 2.200000 2.014286 2.347418 2.246512
55 2.945652 2.876344 3.155556 3.157303 3.147727 3.056180 3.217391 3.241758
56 2.906393 2.645103 2.501377 2.057377 1.928767 1.824658 3.298913 2.220708
57 3.261770 3.091337 2.337278 2.449704 2.139053 2.165680 2.742604 2.538462
58 2.847115 2.421368 2.812339 2.241645 1.982005 2.108247 2.955959 3.314433
59 3.676507 2.907609       NA       NA       NA       NA       NA       NA
60 2.338558 2.419461 3.487091 3.086207 2.969125 3.025729 3.526496 3.105983
61 2.187764 2.419705 3.222346 3.376536 2.545050 2.637375 3.573497 3.385984
62 2.142503 2.176471 2.213235 2.481618 2.735294 3.503676 3.108209 1.511111
63 3.760218 3.771671       NA       NA       NA       NA       NA       NA
64 2.424561 2.359649 2.518519 2.240741 2.188679 2.057692 2.055556 2.000000
65 3.271111 3.135057 4.036649 4.284264 3.221429 3.395062 4.226804 4.251256
66 2.715672 2.651124 2.785285 2.514925 2.327869 2.394345 3.354694 3.044776
67 2.232042 2.698873 2.267500 2.518797 1.820000 2.160000 3.273183 3.189526
        O4G      O4H      O4J      O4K POL_TRST      C14A      C14B      C14C
1  2.329365 1.656604 2.427481 3.075758 2.072682 73.129252 68.600683 46.779661
2  1.922190 2.330508 2.323782 2.798867 2.399247 30.144928 72.471910 42.209632
3  3.286957 2.637437 2.567340 3.126878 2.634052 28.358209 76.206323 13.388430
4  2.630747 2.867220 2.130127 3.353591 2.619611 44.546649 80.000000 48.575130
5  3.183333 2.406667 2.336735 3.751634 2.973992 50.473186 46.153846 33.860759
6  2.952663 2.828897 2.142023 3.296786 3.089792 32.931034 79.351536 56.027165
7  3.104651 2.872093 3.393258 3.555556 3.646296 71.590909 69.318182 49.425287
8  3.103261 3.130435 3.135870 3.663043 2.894022 32.608696 57.837838 31.182796
9  2.195055 2.363388 2.128415 2.953425 2.049636 19.733333 77.866667 56.684492
10 2.353846 2.053846 1.838462 2.619772 2.056616 51.711027 75.190840 56.704981
11 2.911315 2.699700 2.370370 3.423529 2.645650 34.210526 89.884393 38.681948
12 2.475877 2.732892 1.993377 3.242358 2.249453 35.913978 71.125265 48.614072
13       NA       NA       NA       NA       NA 81.903276 38.087774 86.292835
14       NA       NA       NA       NA       NA 14.727273 22.727273 20.218579
15       NA       NA       NA       NA       NA 42.355372 74.537988 46.938776
16       NA       NA       NA       NA       NA 35.784314 72.772277 60.294118
17 3.187251 2.135458 1.798354 3.288973 2.061608 59.154930 80.496454 66.549296
18 2.582751 2.787267 1.867030 3.175466 2.589336 21.122600 90.868925 70.419426
19 3.002717 2.554645 2.732970 3.375000 2.530262 31.868132 36.712329 31.232877
20       NA       NA       NA       NA       NA 49.246231 50.502513 38.442211
21 2.991770 3.004255 3.016461 3.251012 2.943320 26.122449 47.967480 31.707317
22 3.828571 3.036735 2.487069 3.380000 2.736111 55.805243 68.283582 62.730627
23 3.361789 2.726141 3.016260 3.148000 2.688320 28.398792 22.455090 40.419162
24       NA       NA       NA       NA       NA 41.456583 84.090909 64.606742
25       NA       NA       NA       NA       NA 38.139535 94.642857 59.375000
26 2.838109 3.061224 2.304895 3.570081 2.960771 56.081081 77.595628 49.933599
27 2.460490 1.668449 1.799451 2.275401 2.042110 37.950139 77.534247 36.263736
28       NA       NA       NA       NA       NA 49.772727 74.496644 71.840355
29 2.911765 2.518939 2.599251 2.802920 2.145455 49.572650 56.857143 56.749311
30       NA 2.863905 2.046784 3.417143 2.358382 35.119048 84.117647 36.416185
31 3.924686 2.710359 1.903967 3.679089 3.473306 53.400000 49.900200 49.498998
32 2.617512 2.797214 3.198462 3.116386 2.354421 64.296754 52.241113 30.652504
33 3.216028 2.822300 2.196491 3.209059 2.584204 52.145215 91.721854 44.518272
34 3.403670 2.606250 2.128931 2.951070 2.286077 55.988024 65.088757 58.284024
35       NA       NA       NA       NA       NA 38.701299 76.470588 60.204082
36       NA       NA       NA       NA       NA 48.178138 91.756757 22.911051
37 2.676375 2.861736 3.247588 3.888179 2.648504 56.666667 51.212121 43.243243
38 3.408163 2.324873 2.191710 3.335025 2.053872 43.157895 58.854167 35.937500
39 3.580247 2.363636 2.453376 3.423313 2.533540 40.849673 75.625000 78.313253
40 3.354610 3.262411 3.358621 3.760274 2.631757 45.614035 49.411765 38.285714
41 3.413793 3.173611 3.500000 3.363014 3.175258 49.844237 33.823529 37.910448
42 2.846774 1.967828 2.379679 3.307278 2.281640 29.066667 58.510638 41.379310
43 2.926606 2.123288 2.027273 3.184332 2.065909 55.045872 66.972477 83.181818
44 3.184805 2.749487 2.144397 3.231388 2.943333 42.886179 84.418146 53.968254
45       NA       NA       NA       NA       NA 35.671343 83.365571 25.875486
46       NA       NA       NA       NA       NA 26.833631 90.102389 67.530225
47 3.550781       NA 3.040000 3.000000 3.470703 51.750973 57.198444 60.311284
48 2.665644 2.695385 2.876923 3.404908 2.380368 29.737609 67.826087 24.709302
49 3.170157 2.630653 2.536709 3.374372 2.438333 48.628429 78.271605 58.560794
50       NA       NA       NA       NA       NA  9.439528  7.323944  5.586592
51 3.005917 2.068657 1.699405 3.073529 1.812805 58.823529 60.471976 87.202381
52 2.615385 2.412821 2.215385 3.087179 2.364957 68.717949 65.384615 67.179487
53 2.688776 1.926768 2.060914 2.645729 2.035443 47.545220 62.915601 36.340852
54 3.525581 3.093458 3.911628 4.004630 2.542243 52.195122 44.607843 55.102041
55 3.101124 3.055556 3.098901 3.053763 3.148148 21.505376 46.739130 32.978723
56 2.278090 2.335165 2.585165 3.377717 2.160309 21.325648 75.274725 39.722222
57 2.189349 2.659763 2.547337 2.784024 2.308679 61.931818 85.875706 85.875706
58 3.025840 2.318766 2.015464 3.317010 2.345330 39.743590 81.794872 46.786632
59       NA       NA       NA       NA       NA 40.363636 42.028986 33.941606
60 2.822380 3.208547 2.286467 3.467466 3.178653 48.960302 96.533795 85.121107
61 2.715884 2.941046 1.918345 3.382647 3.044865 28.460687 82.872928 49.777778
62 1.600000 2.246212 3.036765 3.536765 2.476716  4.460967  4.444444  1.470588
63       NA       NA       NA       NA       NA 46.408840 46.388889 43.206522
64 2.148148 2.407407 2.055556 2.660377 2.311728 46.236559 79.569892 77.659574
65 4.285714 3.535032 3.653409 3.505102 3.923333 25.210084 22.685185 28.436019
66 3.095890 2.699700 2.498489 2.994092 2.543155 52.941176 81.250000 46.417910
67 3.260000 2.442211 2.774436 3.324257 2.204489 12.652068 75.794621 11.622276
        C14D      C14E      C14F      C14G      C14H      C14J       C14K
1  32.191781 46.048110 70.890411 81.355932  7.482993  9.491525  7.4576271
2  28.770950 27.401130 40.687679 61.731844 46.067416  5.337079  4.4943820
3  51.575456 48.338870 30.897010 42.358804 74.406780 35.655058  1.3223140
4  17.205692 21.656051 70.418848 66.363636 52.542373 44.072165  1.5056462
5  14.057508 20.125786 41.979522 57.692308  3.594771  4.620462  3.3112583
6  40.869565 36.020583 78.694158 83.447099 51.245552 11.243612  3.2423208
7  61.363636 51.136364 56.179775 70.114943 51.724138 38.636364 41.6666667
8  43.783784 36.956522 49.456522 64.130435 39.130435 10.326087  5.4054054
9  51.200000 36.898396 36.436170 88.031915 26.329787  3.191489  1.3297872
10 16.475096 24.427481 63.740458 86.206897 37.642586  3.816794  1.9011407
11 64.954683 57.478006 65.178571 85.100287 58.176101 16.091954  0.8522727
12 42.948718 36.538462 46.055437 64.680851 45.726496 12.869198 10.1479915
13 47.880691 27.500000 54.173228 81.250000 82.992126 17.729393 18.8087774
14 20.255474 10.363636 15.454545 34.363636 36.745887  6.557377  3.8251366
15 34.077079 27.180527 61.030928 59.221311 71.017699 12.121212  5.4766734
16 74.509804 46.305419 57.352941 48.529412  7.389163  7.352941  5.3921569
17 42.253521 44.014085 77.192982 89.583333 40.310078 21.830986  1.7421603
18 71.902655 54.310980 80.927835 95.139912 76.951673 41.046426  2.9563932
19 26.997245 24.242424 34.903047 47.222222 65.181058 13.259669 11.9113573
20 49.497487 38.442211 51.507538 47.738693  6.265664 10.050251  6.5326633
21 26.122449 21.138211 33.877551 42.857143 44.444444  9.274194  4.4176707
22 66.666667 25.461255 56.928839 63.837638 77.566540 13.186813 12.1323529
23 40.116279 20.699708 34.029851 39.296188 30.791789 10.850440 15.2941176
24 65.168539 30.704225 77.247191 70.165746 79.579580 46.005510  0.5479452
25 33.789954 38.990826 72.558140 87.962963 26.291080  2.690583  0.4424779
26 18.958611 16.733068 73.761714 54.886212 66.048502 37.500000  4.0843215
27 55.945946 32.439678 38.440111 42.382271 19.197708  9.162304  1.8421053
28 51.529412 62.360802 64.545455 78.828829 64.250000 34.762980 10.4575163
29 43.195266 47.282609 61.218837 71.900826 41.498559 45.856354 27.8236915
30 47.272727 39.285714 38.509317 77.906977 28.301887 37.426901  1.1173184
31 38.056680 31.589537 41.247485 75.000000 55.804481 17.434870 12.7490040
32 25.644917 23.520486 60.821485 83.841463 10.687023  6.870229 15.9937888
33 46.666667 55.518395 82.781457 88.000000 83.557047 17.666667  2.9702970
34 72.916667 42.261905 65.568862 84.660767 75.157233 23.145401 14.2433234
35 68.556701 41.687980 51.715040 76.606684 67.759563  7.575758  2.2784810
36 40.544218 38.700947 39.945652 70.985155 87.755102        NA  4.5822102
37 35.975610 45.481928 63.473054 85.329341 54.716981 15.361446 20.3030303
38 17.801047 29.946524 53.439153 63.402062 11.111111 10.471204  8.9005236
39 47.416413 36.826347 75.232198 91.158537 44.480519 19.287834  4.4510386
40 35.928144 26.666667 62.427746 63.218391 39.156627 11.585366 25.9036145
41 42.261905 31.044776 42.899408 57.227139 49.401198 23.214286 25.1533742
42 21.657754 22.133333 42.819149 59.574468 41.600000  7.957560  5.8510638
43 47.511312 39.545455 65.740741 85.844749 26.363636 11.415525  5.9090909
44 56.969697 46.262626 87.944664 84.251969 40.824742 17.391304  4.6966732
45 47.140039 49.607843 50.509165 74.902724 69.117647 23.404255  1.9455253
46 65.000000 51.356239 71.086556 93.728814 50.905433 27.464789  0.3344482
47 62.256809 63.424125 53.307393 48.249027 64.980545 66.147860 33.8521401
48 35.672515 29.941860 30.903790 63.953488 60.471976 10.818713  4.6783626
49 62.189055 53.349876 64.444444 80.645161 64.925373 47.160494 34.9009901
50  9.166667  5.633803  9.322034  8.938547  2.528090  5.084746  2.8490028
51 46.176471 29.203540 61.764706 86.725664 30.294118 12.058824 10.3857567
52 45.128205 45.897436 77.179487 86.410256 33.076923 27.692308 26.6666667
53 44.000000 16.417910 49.874055 48.223350 39.018088 11.851852  5.2238806
54 41.062802 38.207547 80.476190 79.812207 63.366337 14.903846 16.0804020
55 43.478261 33.333333 36.263736 55.434783 54.838710 15.053763  1.0638298
56 47.353760 46.927374 47.838617 77.472527 53.230769 10.863510  1.1267606
57 54.647887 43.342776 64.124294 68.644068 31.073446  8.169014  3.6619718
58 42.673522 34.961440 52.185090 54.871795 40.779221  2.051282  2.3076923
59 44.727273 29.927007 38.768116 31.272727  3.985507  5.090909  3.6363636
60 48.269581        NA 94.964029 98.109966 81.690141 42.931937  0.8576329
61 25.612472 28.903654 63.222222 66.592920 64.062500 32.853982  1.1061947
62 33.333333  9.665428 37.638376  9.701493  2.214022 38.602941 79.0441176
63 46.518106 40.431267 43.888889 61.956522 57.734807 41.416894 34.8066298
64 37.234043 33.684211 48.936170 60.000000  6.382979 35.789474  3.1578947
65 27.149321 17.351598 19.069767 23.636364 12.558140  6.756757  5.0000000
66 35.196375 47.234679 74.925373 78.358209 74.267101 25.187406  3.9823009
67 53.041363 41.075795 37.378641 63.834951 35.308642 10.462287  3.3980583
         C14L       C14M   C18A_s    C18B_s   C18C_s   C18D_s   C18E_s   C18F_s
1   7.4829932  3.0612245 52.33645 52.314815 76.63551 80.00000 77.93427 61.68224
2   8.1005587 10.9550562 57.38832 30.584192 60.06826 49.29577 51.95730 53.71025
3  18.0165289 36.2862010 33.65385 17.456897 69.16488 59.47712 80.30303 63.01075
4          NA         NA 65.17857 27.485380 91.39633 74.34402 82.46377 64.29608
5   3.3003300  2.4844720 76.82403 47.598253 86.28319 65.89862 53.11005 52.77778
6  11.4840989 22.8163993 48.36957 26.932668 78.81773 50.25253 59.39850 35.17588
7  43.3734940 54.7619048 79.59184 83.673469 73.46939 67.34694 62.50000 65.30612
8   5.4054054  9.1891892 84.68468 72.727273 86.11111 63.30275 67.88991 65.13761
9   1.8617021  6.1170213 36.82171 35.135135 68.33977 58.91473 74.13127 42.47104
10  2.2988506 13.7404580 19.51220 23.577236 65.85366 66.80162 74.07407 70.24793
11  4.3352601  9.6774194 35.95506 24.104235 66.24606 68.19672 75.56270 44.48052
12 14.7679325 12.0507400 28.98551 33.809524 53.88350 32.36715 39.21569 37.19807
13 12.9082426 28.2812500 44.04494 43.176734 71.30045 65.40179 70.02237 58.65169
14  5.1188300  5.1188300 42.73504 32.285714 48.70317 53.62319 50.28902 63.79310
15         NA         NA 21.11324  7.400380 77.86260 61.99616 88.35878 65.63107
16  5.3921569  5.3921569 70.27027  9.150327 93.50649 95.42484 73.85621 71.05263
17 21.4788732 20.6405694 21.42857 18.309859 69.48357 69.85646 71.63462 62.26415
18         NA         NA       NA        NA       NA       NA       NA       NA
19 11.9113573 11.1731844 86.63594 84.403670 68.37209 44.07583 44.28571 64.18605
20  7.0528967 14.8614610 52.03620 50.892857 60.98655 59.37500 61.60714 43.11111
21  7.6305221  8.4337349 66.99029 62.264151 75.00000 42.71845 51.92308 52.38095
22 12.9770992 22.0077220 16.01942 42.660550 74.17840 61.72249 69.04762 52.83019
23 13.7931034 15.1603499 80.88235 50.000000 70.50360 63.97059 65.67164 62.58993
24  2.1857923 24.6458924 44.18605 33.132530 93.78698 66.77316 91.69139 44.54829
25  5.8558559  6.3063063 66.66667 27.611940 83.45324 69.62963 77.37226 53.38346
26         NA         NA 31.84818 14.437690 90.33675 66.35659 71.12135 57.44681
27  0.5249344  0.7894737 48.45679 13.017751 73.59050 70.42683 79.32099 60.36585
28 10.1731602 20.7589286 41.66667 22.459893 55.80110 37.14286 39.32584 33.14286
29 24.3478261 23.9067055 41.04478 26.351351 82.31293 83.91608 89.11565 64.08451
30  6.2146893 11.4942529 71.17117 49.557522 68.37607 41.44144 52.77778 46.78899
31 22.8744939 23.3265720 74.38272 45.794393 92.83489 82.24299 72.50000 71.42857
32         NA         NA 80.83333 66.876310 91.15789 78.44828 75.59913 55.67452
33  4.9668874 18.6046512 41.15044 34.955752 82.30088 60.79295 68.75000 46.46018
34 15.2238806 12.7976190 22.58065 10.424710 82.95455 79.37743 86.23482 79.84496
35         NA         NA 35.12748 18.361582 64.04494 64.51613 71.22093 52.17391
36  2.8263795  8.9068826 35.17915 59.935380 51.54472 52.44300 61.50082 44.05941
37 16.2650602 20.9090909 79.22078 69.426752 92.30769 86.45161 81.93548 67.53247
38  8.3333333  7.8125000 56.25000 39.583333 70.00000 65.51724 66.66667 41.86047
39  4.4642857 20.3030303 33.45070 32.119205 72.63844 77.02703 80.13468 70.52980
40 14.9700599 16.3636364 87.30159 73.437500 89.06250 78.12500 70.96774 70.31250
41 27.7258567 26.7080745 68.90756 62.184874 80.67227 71.92982 65.21739 63.55932
42  6.3829787  5.0397878 69.28105 58.360656 73.11475 54.45545 53.97351 56.43564
43  6.7873303  9.0497738 67.79661 69.491525 72.03390 64.95726 66.10169 50.86207
44 11.7878193 28.2352941 16.95906 16.504854 76.97517 75.62077 77.60181 59.01639
45         NA         NA 34.45122 15.176152 77.60417 79.89276 89.29504 72.46753
46         NA         NA 53.91566 47.846890 85.84687 66.49874 84.70874 71.16883
47 35.4085603 51.3618677 64.39791 67.539267 57.59162 49.20635 35.97884 38.42105
48  3.2069971  5.2631579 47.65343 39.642857 84.28571 70.96774 71.48014 51.79856
49 36.3861386 41.0891089 64.46541 24.137931 83.54430 70.25316 77.60252 62.97468
50         NA         NA       NA        NA       NA       NA       NA       NA
51  7.7151335  9.5238095 64.53488 64.161850 62.64368 50.00000 43.02326 38.23529
52 18.4615385 21.2820513 14.73684 24.912281 59.64912 71.92982 66.66667 52.63158
53  4.9382716 17.9104478 28.61190 15.625000 65.81921 79.48718 83.76068 66.38177
54 15.9203980 27.6923077 92.48120 82.089552 92.30769 74.21875 63.11475 75.38462
55  7.5268817  5.3191489 40.74074 40.350877 45.61404 37.50000 38.98305 29.82456
56  3.0898876 14.6892655 45.21073 37.827715 81.41264 67.31518 85.17110 53.99240
57 14.9295775 16.0563380 27.45098 32.156863 88.23529 75.98425 84.25197 46.66667
58  7.4742268  7.7120823 24.70238 10.374640 61.67147 59.63855 63.31361 40.35088
59  5.7971014 11.6788321       NA        NA       NA       NA       NA       NA
60         NA         NA 30.22508 18.035427 79.96795 60.00000 73.38710 53.77207
61         NA         NA 58.42246 21.094793 86.81758 71.69559 78.34225 69.14894
62  4.0441176 73.8970588 44.57831 29.957806 54.61847 26.66667 20.56452 10.46025
63         NA         NA 68.83117 79.746835 92.40506 83.66013 80.00000 69.67742
64  7.4468085 13.8297872 18.86792  9.433962 62.74510 81.13208 77.35849 50.00000
65  4.0723982  4.5662100 80.14706 67.153285 84.96241 80.00000 72.38095 78.33333
66  4.6920821 11.6691285 40.35785 49.557522 70.51724 66.10801 77.28086 60.21127
67  3.8740920 10.1694915 22.16216 16.976127 71.95767 37.56757 63.53887 21.71582
     C18G_s   C18H_s    C18J_s   C18K_s   C18L_s   C18M_s   C18O_s    C19A_s
1  47.61905 88.26291  93.48837 66.19718 63.38028 75.81395 63.67925 43.720930
2  53.70370 85.22337  93.58108 77.81570 78.76712 60.13746 54.76190 27.118644
3  71.65179 92.30769  99.35897 81.56182 84.76395 54.42765       NA 20.044053
4  62.79762 88.64943  97.61571 65.49708 68.85714 58.00866       NA 13.180516
5  62.67281 59.81308  70.13575 63.80090 70.31963 39.33649 41.11675 64.757709
6  60.80402 78.90819  93.46734 60.20151 55.32468 53.86534 32.38095 12.623762
7  65.30612 59.18367  55.10204 59.18367 63.26531 56.25000 60.41667 72.000000
8  47.70642 59.81308  79.62963 48.14815 65.74074 53.27103 61.46789 56.250000
9  73.54086 92.27799  96.91120 91.11969 91.47287 63.70656 50.19455 28.571429
10 66.93878 85.30612  97.97571 87.19008 79.91803 70.04049 51.85185 34.552846
11 71.86441 79.48718  97.79180 64.66667 71.79487 46.81529 30.35714 16.447368
12 43.96135 61.72249  79.80769 62.62136 67.94258 38.04878 36.89840 27.358491
13 56.40449 81.87919  85.81081 83.33333 76.52370 53.61991       NA 32.207207
14 58.57143 72.77937  88.25215 73.14286 71.91977 58.77193       NA 40.170940
15 39.96024 79.20792  66.92759 64.66019 58.22050 89.79206       NA 14.741036
16 86.92810 85.62092  99.35065 81.81818 95.45455 53.28947 32.85714 53.289474
17 49.75124 79.24528  95.85253 57.74648 54.67290 69.33962 37.66234 23.902439
18       NA       NA        NA       NA       NA       NA       NA        NA
19 63.55140 73.48837  87.61468 81.01852 83.33333 38.46154 50.00000 43.317972
20 35.55556 38.11659  77.53304 66.96035 73.45133 72.12389       NA 61.674009
21 53.46535 84.46602  94.17476 80.18868 88.67925 53.33333 56.38298 43.396226
22 47.86730 88.37209  93.54839 75.11737 66.82243 57.76699       NA 29.648241
23 46.32353 67.64706  77.61194 54.41176 62.77372 47.32824 56.81818 55.223881
24 62.65432 93.21534  97.34513 82.54438 51.65165 71.64179       NA 13.846154
25 85.00000 85.61151  92.80576 76.11940 70.07299 78.98551       NA 11.940299
26 59.87749 85.24590  94.72914 56.21212 63.70370 59.58084       NA 12.743628
27 49.53271 90.33233  97.90419 74.53988 77.64350 55.10836       NA 21.068249
28 42.44186 73.07692  80.97826 69.94536 64.51613 48.57143       NA 17.877095
29 63.57143 89.26174  93.24324 78.76712 73.33333 79.33333 53.22581 31.724138
30 50.87719 84.21053  95.76271 40.59406 57.01754 26.12613       NA 46.428571
31 72.84345 77.31629  81.63934 70.60703 76.19048 68.35443 58.36066 49.216301
32 75.66964 89.54248  94.54927 89.49580 88.38174 63.88889 64.86486 77.754678
33 60.26786 86.34361  97.80702 70.04405 69.64286 56.19469 41.01382 17.040359
34 60.92437 91.86047  96.93487 77.32794 75.88933 71.37255 52.84974 25.680934
35 71.67630 89.83051  96.61972 70.72464 68.92655 68.20809       NA  5.780347
36 61.78862 78.31715  88.38710 59.12052 63.47403 35.50489 14.35563 13.106796
37 79.48718 82.58065  92.20779 76.66667 88.15789 72.29730 69.65517 71.895425
38 23.80952 72.52747  86.02151 40.90909 49.43820 73.33333 61.79775 47.959184
39 65.42373 82.21477  91.83007 67.20779 65.90164 71.57534 53.79061 41.095890
40 56.25000 73.33333  87.30159 55.55556 81.25000 63.93443 66.12903 81.250000
41 71.55172 80.50847  84.87395 69.23077 77.31092 66.66667 57.79817 60.330579
42 56.14618 74.25743  91.47541 77.37705 84.96732 51.15512       NA 53.594771
43 65.25424 59.32203  64.10256 57.98319 75.63025 65.54622 52.54237 50.420168
44 50.74257 89.05908  96.37527 74.55357 76.10619 59.62877       NA 10.328638
45 80.32345 92.50646  98.97698 80.52632 83.76289 81.10236       NA 22.493225
46 74.48454 88.80952  97.04545 74.63415 75.52941 61.63070       NA 17.754569
47 39.26702 39.47368  53.92670 40.31414 50.26178 54.45026       NA 74.345550
48 71.58273 79.21147  92.80576 82.43728 87.05036 62.23022       NA 47.080292
49 66.03175 75.86207  92.40506 60.88328 70.66246 52.53165 40.12945 21.562500
50       NA       NA        NA       NA       NA       NA       NA        NA
51 61.98830 59.30233  72.83237 53.48837 74.70588 43.67816 51.47929 30.057803
52 53.68421 70.52632  80.70175 71.57895 73.33333 58.59649 21.75439 13.333333
53 57.68116 72.41379  88.45070 58.68946 61.64773 80.96591 56.35838 20.289855
54 69.60000 75.60976  90.29851 83.46457 86.25954 76.80000 67.66917 69.172932
55 33.33333 41.37931  50.84746 39.65517 39.65517 26.31579 20.37037 25.000000
56 68.07692 91.35338  99.26471 84.23077 81.74905 71.96970 48.54772 36.501901
57 40.00000 70.19608  86.66667 80.39216 79.21569 38.43137 37.69841 29.921260
58 68.42105 85.91954  96.26437 71.67630 80.05780 69.25287 30.79268 11.849711
59       NA       NA        NA       NA       NA       NA       NA        NA
60 63.08186 89.71061  96.00639 76.37540 69.03226 59.54693       NA  7.568438
61 61.63102 82.95606  95.88859 69.20000 59.54301 68.52590       NA 10.106383
62  0.00000 60.64257 100.00000 25.40323 25.64103 26.90763 46.98795 20.161290
63 68.55346 74.35897  96.22642 79.87421 87.42138 77.41935       NA 82.911392
64 59.61538 82.69231 100.00000 73.58491 79.24528 56.60377 27.45098  9.433962
65 69.74790 81.66667  91.60305 78.90625 81.88976 78.04878 70.58824 61.904762
66 68.44920 91.65247  97.97297 73.68421 77.33564 51.83888       NA 19.814815
67 46.40000 69.31217  90.76517 59.51743 68.16976 33.95225       NA 27.540107
     C19B_s    C19C_s   C19D_s   C19E_s    C19F_s    C19G_s    C19H_s    C19J_s
1  39.53488 43.925234 66.03774 83.25581  98.14815 25.925926 27.570093 40.277778
2  72.50859 11.604096 78.89273 79.12458  96.65552 56.756757 51.178451 18.791946
3  77.00651  6.034483 74.83589 85.31317  96.35193 50.000000 41.266376  8.207343
4  74.00568  3.932584 67.95977 90.55007  93.39888 33.479532 33.530281  5.974395
5  76.21145 63.436123 69.95516 88.59649  91.44144 80.973451 77.292576 59.649123
6  70.76167  8.599509 59.55335 82.96296  90.19608 29.797980 32.405063 11.442786
7  76.00000 48.000000 46.00000 64.00000  64.00000 62.000000 57.142857 55.102041
8  73.87387 42.342342 55.04587 71.55963  80.18018 89.189189 83.783784 70.000000
9  76.06178  7.782101 76.83398 76.35659  96.88716 33.204633 28.185328 24.806202
10 75.91837 13.524590 72.54098 93.49593  92.21311 40.816327 15.573770 17.479675
11 76.06557  7.051282 83.12102 90.88050  90.56604 43.143813 34.563758 14.851485
12 65.42056 13.084112 50.92593 61.50235  89.30233 54.245283 50.471698 34.112150
13 45.37246 39.954853 42.34234 44.92099  51.13122 27.927928 26.351351 30.995475
14 45.14286 29.059829 49.85507 81.66189  88.82521 75.498575 71.306818 60.744986
15 81.35922  5.252918 41.30435 81.48855  87.47628 23.300971 13.846154  8.704062
16 72.07792 15.686275 89.54248 54.24837  93.50649 51.633987 52.941176 69.281046
17 75.23364  7.109005 58.76777 87.90698  94.41860  8.173077  7.619048 13.679245
18       NA        NA       NA       NA        NA        NA        NA        NA
19 54.16667 41.743119 66.66667 81.27854  93.57798 95.000000 95.000000 66.666667
20 44.73684 55.947137 73.41772 80.00000  77.54237 41.025641 42.918455 79.059829
21 69.52381 30.476190 82.85714 81.90476  96.22642 82.075472 83.809524 63.207547
22 58.04878 15.094340 49.29577 89.86175  91.20370 22.748815 12.796209 18.957346
23 62.22222 41.605839 54.81481 71.53285  90.51095 83.941606 77.372263 41.911765
24 66.25767  6.824926 78.91566 95.26627  93.49112 31.962025 24.115756 10.876133
25 69.85294  5.109489 75.91241 91.42857  94.24460 46.511628 55.384615  7.299270
26 73.96450  6.176471 64.68843 93.27485  90.80292 38.212635 21.383648  9.509658
27 78.86905  9.696970 36.63664 94.02985  97.64012 59.633028 52.121212 20.120120
28 69.14894 27.868852 63.29787 55.30726  86.24339 37.837838 26.486486 20.652174
29 81.25000 21.232877 53.79310 82.66667  86.75497 30.985915 38.405797 22.147651
30 58.11966 10.655738 52.67857 90.00000  97.56098 68.644068 53.508772 30.578512
31 79.68750 34.169279 58.80503 83.48910  90.68323 68.535826 70.278638 52.830189
32 74.22037 39.375000 76.97095 82.98755  94.63918 80.042017 69.894737 73.291925
33 90.22222  2.252252 58.48214 98.67841  96.88889 53.811659 52.888889 12.888889
34 75.90361  5.447471 69.73180 95.47170  96.19772 21.513944 21.721311 13.229572
35 69.85507  2.840909 59.14286 73.44633  95.22472 34.393064 33.333333  6.250000
36 58.13205  8.548387 38.16425 64.14791  85.66828  5.787781  8.695652 14.331723
37 61.43791 50.335570 82.11921 82.11921  89.40397 81.208054 78.378378 73.509934
38 40.40404 36.734694 47.31183 66.66667  90.72165 36.458333 37.894737 51.546392
39 53.08219 20.529801 56.75676 93.48534  88.59935 18.213058 15.570934 37.704918
40 71.66667 41.935484 71.87500 72.58065  83.87097 77.419355 75.806452 70.491803
41 63.63636 49.586777 65.00000 70.24793  88.33333 61.666667 61.864407 61.983471
42 74.75410 42.622951 68.30065 84.31373  95.08197 78.758170 64.705882 56.721311
43 75.63025 26.050420 65.54622 78.99160  88.23529 51.694915 53.846154 43.220339
44 66.36156  2.850877 70.83333 84.56522  92.78132 32.380952 20.140515  7.947020
45 80.21680  4.392765 63.54167 79.53368  97.70408 54.629630 56.119403  8.997429
46 57.84062  4.773270 61.55779 95.05882  94.81132 61.194030 56.109726 18.705036
47 70.68063 67.539267 70.15707 72.25131  55.49738 75.392670 64.921466 81.675393
48 73.55072 35.869565 82.60870 86.59420  96.01449 57.246377 48.913043 50.545455
49 77.50000  6.624606 64.89028 78.05643  94.68750 50.636943 43.125000 20.569620
50       NA        NA       NA       NA        NA        NA        NA        NA
51 79.06977 14.035088 56.72515 71.42857  90.64327 41.071429 32.544379 18.390805
52 47.71930 12.676056 58.94737 81.40351  90.17544 17.192982 16.140351 17.192982
53 67.14286 11.747851 43.39080 82.10227  94.63277 24.355301 20.977011 16.239316
54 69.69697 61.068702 87.31343 86.56716  77.77778 82.442748 88.059701 77.272727
55 42.37288 44.067797 49.15254 56.14035  52.54237 40.350877 28.070175 60.344828
56 72.93233 18.450185 81.64794 84.19118  96.36364 48.638132 47.843137 28.838951
57 67.71654 14.566929 54.72441 72.83465  92.12598 20.553360 16.996047 18.503937
58 82.42075  3.448276 76.52174 87.35632  93.96552 40.517241 31.321839 10.632184
59       NA        NA       NA       NA        NA        NA        NA        NA
60 58.52090  3.054662 56.95793 91.98718  92.61637 32.096774 41.062802 12.721417
61 70.46358  5.968170 61.35458 87.53316  91.39073 40.800000 44.058745  5.570292
62 53.01205 26.104418 59.43775 59.43775  82.32932 35.742972 32.530120 38.554217
63 74.68354 70.886076 77.21519 78.34395  95.59748 57.594937 52.830189 68.553459
64 70.37037  7.407407 56.60377 92.59259  90.74074 54.716981 50.943396  9.433962
65 60.00000 45.000000 80.00000 95.00000 100.00000 85.714286 80.000000 73.684211
66 81.11511  2.599653 64.27320 81.36752  97.30185 42.962963 34.014870  9.230769
67 74.07407  7.692308 68.88298 93.13984  94.72296 38.461538 25.797872 12.698413
     C19K_s    C18A_w    C18B_w     C18C_w     C18D_w     C18E_w    C18F_w
1  58.87850 28.504673 26.388889  7.4766355  6.0465116  5.1643192 12.616822
2  46.93878 26.804124 42.955326 11.9453925 14.0845070 11.3879004  6.713781
3  45.59140 28.125000 42.456897 13.9186296  5.0108932  2.1645022  4.946237
4  20.57143 14.732143 36.549708  0.9873061  2.1865889  1.5942029  3.193033
5  82.14286  8.583691 30.131004  6.1946903 10.1382488 13.3971292 15.740741
6  31.43564 15.217391 25.685786  3.9408867 10.6060606  8.2706767 13.316583
7  60.00000  2.040816  2.040816  0.0000000 10.2040816  4.1666667 10.204082
8  85.32110  8.108108 11.818182  4.6296296  9.1743119 14.6788991 11.009174
9  38.22394 31.782946 33.590734 11.9691120  5.8139535  2.3166023  5.791506
10 25.10121 51.626016 61.382114 19.1056911 14.9797571  7.8189300  5.371901
11 51.26582 22.846442 33.550489 19.8738170  6.8852459  4.1800643  8.116883
12 43.66197 43.478261 38.095238 16.9902913 33.8164251 31.8627451 30.917874
13 47.84580 28.764045 24.384787  7.1748879  6.2500000  4.6979866  3.820225
14 69.31818 32.193732 42.857143 19.5965418 18.8405797 24.5664740 13.218391
15 33.01158 42.802303 75.711575  9.9236641 26.4875240  1.3358779  9.514563
16 66.66667 19.594595 74.509804  0.0000000  0.0000000  0.0000000  0.000000
17 32.39437 29.523810 43.661972  6.1032864  6.2200957  4.3269231  5.188679
18       NA        NA        NA         NA         NA         NA        NA
19 72.01835  5.529954  5.963303  9.3023256 22.7488152 24.2857143 13.488372
20 76.82403 11.312217 12.946429  8.5201794 17.4107143 16.5178571 15.555556
21 80.00000 15.533981 19.811321  9.6153846 12.6213592 12.5000000 11.428571
22 41.12150 39.320388 22.935780  5.1643192  5.7416268  3.3333333  6.132075
23 57.97101 10.294118 26.811594  7.9136691 13.2352941 12.6865672  8.633094
24 32.84024 16.279070 30.421687  2.0710059  6.7092652  0.5934718  9.968847
25 19.25926 14.393939 35.820896  5.7553957  4.4444444  2.9197080  3.759398
26 29.77778 30.198020 47.112462  1.9033675  5.7364341  3.8402458  5.775076
27 36.22754 31.481481 68.047337 11.2759644 16.7682927  4.6296296 10.060976
28 59.34066 21.111111 43.315508  8.8397790  7.4285714  7.3033708  8.000000
29 28.37838 32.089552 53.378378  7.4829932  4.1958042  0.6802721  7.042254
30 56.30252  2.702703  6.194690  6.8376068  2.7027027  0.9259259  3.669725
31 72.69841 12.345679 31.775701  1.8691589  6.8535826  9.3750000  9.627329
32 80.63158  5.833333  9.853249  0.6315789  3.0172414  2.8322440  5.995717
33 36.44444 30.530973 38.938053  7.5221239  4.8458150  3.1250000  7.964602
34 39.38224 55.241935 72.586873  9.0909091  5.8365759  2.0242915  5.038760
35 14.24501 49.858357 65.819209  9.2696629  5.8651026  3.1976744  5.797101
36 27.11039 18.729642 14.216478  7.1544715  5.7003257  2.7732463  2.640264
37 80.79470  8.441558 17.834395  2.5641026  5.8064516  7.0967742 16.233766
38 69.07216 21.875000 34.375000  8.8888889 12.6436782  9.5238095 23.255814
39 39.01639 28.169014 32.119205  6.8403909  4.0540541  2.6936027  3.311258
40 79.03226  6.349206 15.625000  0.0000000  1.5625000  4.8387097  3.125000
41 75.00000  8.403361 15.126050  0.8403361  3.5087719  4.3478261  1.694915
42 66.11842 17.320261 21.639344  6.8852459 14.1914191 12.9139073  7.920792
43 54.23729 16.949153 21.186441 11.0169492 12.8205128 12.7118644 21.551724
44 25.54585 44.736842 49.757282  5.4176072  2.4830700  0.9049774  3.278689
45 30.67010 43.292683 60.433604 13.5416667  2.4128686  1.0443864  3.376623
46 31.14355 13.253012 21.770335  5.1044084  5.2896725  3.3980583  3.376623
47 76.43979 11.518325 10.994764 19.8952880 25.9259259 30.1587302 28.947368
48 68.84058 33.574007 37.142857  4.2857143  5.0179211  3.6101083  6.115108
49 38.87147  8.490566 43.260188  4.4303797  4.4303797  2.8391167  7.278481
50       NA        NA        NA         NA         NA         NA        NA
51 32.74854 21.511628 17.341040 10.9195402 25.2873563 31.3953488 35.882353
52 32.63158 56.491228 47.368421 15.0877193  5.6140351  7.0175439 15.789474
53 25.00000 47.025496 66.193182 12.9943503  7.1225071  3.9886040  5.128205
54 91.04478  4.511278  9.701493  3.0769231  7.8125000 18.0327869 14.615385
55 55.93220 31.481481 28.070175 38.5964912 33.9285714 38.9830508 33.333333
56 63.46863 27.969349 33.333333  6.3197026  5.8365759  3.0418251 12.547529
57 23.62205 31.764706 41.960784  3.1372549  3.1496063  3.1496063  9.411765
58 32.27666 46.726190 63.688761 13.5446686 21.9879518 14.7928994 14.912281
59       NA        NA        NA         NA         NA         NA        NA
60 29.19355 19.614148 32.045089  5.6089744  3.3870968  1.6129032  3.370787
61 16.75532 12.032086 37.249666  2.9294274  1.3351135  1.2032086  1.329787
62 65.06024 16.867470 25.738397 20.4819277 33.7500000 40.3225806 63.179916
63 75.79618  3.246753  7.594937  0.6329114  0.6535948  0.0000000  1.290323
64 16.98113 47.169811 75.471698 23.5294118  3.7735849  3.7735849 17.307692
65 80.00000  4.411765 15.328467  4.5112782  5.8333333  8.5714286  5.833333
66 36.56846 35.188867 29.026549 10.1724138  4.4692737  1.7889088  5.633803
67 51.58730 32.702703 45.092838 10.0529101 19.7297297 10.7238606 29.490617
       C18G_w     C18H_w     C18J_w     C18K_w     C18L_w    C18M_w    C18O_w
1  20.4761905  3.7558685  0.9302326  9.3896714  9.8591549  5.581395 16.037736
2   9.6296296  4.8109966  1.6891892  2.7303754  3.7671233  9.621993  9.523810
3   3.1250000  1.7094017  0.2136752  2.3861171  2.1459227  4.967603        NA
4   4.4642857  2.1551724  0.4207574  3.8011696  3.2857143  3.318903        NA
5  13.3640553 21.4953271 13.5746606  9.9547511 10.0456621 34.597156 24.365482
6   5.7788945  5.4590571  1.5075377  6.0453401  6.4935065  7.980050  7.619048
7  10.2040816 16.3265306 14.2857143 24.4897959 18.3673469 16.666667 27.083333
8  19.2660550 18.6915888  8.3333333 18.5185185 11.1111111 22.429907 16.513761
9   1.9455253  1.1583012  0.3861004  0.7722008  0.7751938  6.177606  3.501946
10  9.7959184  3.6734694  0.8097166  3.7190083  3.2786885  6.882591 15.226337
11  3.7288136  4.1666667  0.6309148  4.6666667  4.1666667  7.006369  4.761905
12 26.0869565 14.3540670  4.8076923 13.1067961  8.1339713 37.560976 17.647059
13  7.6404494  3.3557047  4.0540541  3.6036036  5.4176072 11.764706        NA
14 16.2857143 11.1747851  3.4383954  9.1428571  9.1690544 21.345029        NA
15 23.6580517  4.1584158 12.3287671 12.4271845 15.4738878  1.323251        NA
16  0.0000000  0.6535948  0.0000000  0.0000000  0.0000000  1.315789  0.000000
17  6.9651741  3.3018868  0.9216590  9.3896714  8.8785047  6.132075 17.532468
18         NA         NA         NA         NA         NA        NA        NA
19 14.0186916  8.8372093  3.6697248  5.5555556  2.7777778 34.615385 12.745098
20 18.6666667 15.6950673  5.7268722 14.0969163  8.8495575 11.061947        NA
21 10.8910891  5.8252427  2.9126214  2.8301887  2.8301887 19.047619  8.510638
22  7.5829384  5.5813953  0.9216590  3.7558685  4.6728972  6.310680        NA
23 22.0588235 14.7058824  6.7164179 21.3235294 18.9781022 22.137405 21.212121
24  3.7037037  0.5899705  0.2949853  2.3668639  8.4084084  4.477612        NA
25  0.7142857  2.1582734  2.1582734  2.9850746  3.6496350  2.898551        NA
26  7.1975498  2.9806259  0.5856515  7.1212121  5.4814815  5.838323        NA
27 11.5264798  3.3232628  0.8982036  5.8282209  5.4380665 12.693498        NA
28  4.0697674  4.9450549  2.7173913  4.9180328  5.3763441  6.857143        NA
29  8.5714286  2.6845638  1.3513514  3.4246575  6.0000000  2.000000 14.516129
30  5.2631579  3.5087719  0.8474576  1.9801980  3.5087719  5.405405        NA
31 11.1821086  7.0287540  4.9180328  5.7507987  5.7142857 12.658228 15.409836
32  4.2410714  1.3071895  0.6289308  1.8907563  1.4522822  9.401709  4.729730
33  6.2500000  4.8458150  0.4385965  3.9647577  3.1250000  4.867257  6.912442
34  8.8235294  3.4883721  1.1494253  6.8825911  6.3241107  3.529412 13.989637
35  3.4682081  3.9548023  1.4084507  6.9565217  5.6497175  2.312139        NA
36  2.9268293  2.2653722  1.6129032  3.7459283  3.4090909  6.351792 11.908646
37  8.3333333  9.6774194  5.1948052  5.3333333  1.9736842  9.459459  8.275862
38 34.5238095 15.3846154  4.3010753 23.8636364 17.9775281  6.666667 15.730337
39  9.1525424  9.0604027  1.9607843  4.2207792 12.4590164  6.506849 16.245487
40  9.3750000 11.6666667  4.7619048 11.1111111  7.8125000 18.032787 11.290323
41  2.5862069  2.5423729  1.6806723  4.2735043  3.3613445  3.418803  8.256881
42 12.9568106  4.9504950  2.2950820  3.2786885  2.2875817 19.471947        NA
43 15.2542373 16.1016949 12.8205128 20.1680672  5.8823529 21.008403 21.186441
44  4.2079208  0.8752735  0.8528785  2.6785714  3.3185841  2.552204        NA
45  2.6954178  1.2919897  0.2557545  1.0526316  3.6082474  1.837270        NA
46  2.0618557  2.6190476  0.6818182  1.4634146  2.1176471  5.035971        NA
47 26.7015707 25.7894737 14.6596859 23.5602094 21.4659686 13.612565        NA
48  6.8345324  7.5268817  2.1582734  3.9426523  3.9568345 10.431655        NA
49  4.4444444  5.9561129  0.9493671  6.6246057  5.0473186 13.924051 10.679612
50         NA         NA         NA         NA         NA        NA        NA
51 16.3742690 15.1162791  9.2485549 18.0232558  8.8235294 34.482759 21.301775
52 15.7894737  8.4210526  6.6666667  7.7192982  7.3684211 10.175439 44.210526
53 10.1449275  9.1954023  4.2253521 10.5413105  9.3750000  6.250000 18.497110
54 10.4000000 15.4471545  5.9701493  8.6614173  2.2900763  6.400000  9.022556
55 38.5964912 46.5517241 47.4576271 44.8275862 46.5517241 33.333333 25.925926
56  6.9230769  1.5037594  0.0000000  1.1538462  3.4220532  4.166667 11.618257
57 10.9803922  7.0588235  3.1372549  2.3529412  3.5294118 16.078431 20.238095
58  5.2631579  3.4482759  1.1494253  6.9364162  4.3352601  6.609195 13.109756
59         NA         NA         NA         NA         NA        NA        NA
60  2.4077047  1.4469453  0.3194888  1.4563107  1.6129032  1.618123        NA
61  3.2085561  1.3315579  0.1326260  2.4000000  3.4946237  2.390438        NA
62 65.1785714  2.0080321  0.0000000 35.8870968 34.6153846 44.176707  6.425703
63  3.7735849  1.2820513  0.6289308  0.6289308  0.6289308  0.000000        NA
64 23.0769231  3.8461538  0.0000000  9.4339623  5.6603774 15.094340 23.529412
65 13.4453782  5.0000000  4.5801527  6.2500000  4.7244094  7.317073  8.403361
66  4.6345811  2.3850085  0.1689189  4.2105263  2.0761246  9.982487        NA
67 15.2000000 14.2857143  3.9577836 10.4557641  5.3050398 25.729443        NA
      C19A_w    C19B_w    C19C_w     C19D_w     C19E_w     C19F_w     C19G_w
1  22.790698 19.069767 20.093458 10.3773585  3.2558140  0.9259259 27.3148148
2  40.677966  4.467354 66.211604  6.2283737  7.4074074  1.0033445  9.4594595
3  20.704846  1.952278 78.879310 11.1597374  2.8077754  0.0000000  6.7391304
4  36.389685  5.681818 86.938202  8.3333333  1.6925247  0.2808989 16.3742690
5  14.537445  6.607930 18.942731 13.0044843  1.7543860  0.9009009  3.0973451
6  32.920792  5.896806 78.624079  7.1960298  4.1975309  1.2254902 20.2020202
7   4.000000  0.000000  4.000000 10.0000000  4.0000000 12.0000000 16.0000000
8  22.321429  2.702703 27.927928 19.2660550 10.0917431  9.9099099  2.7027027
9  34.362934  7.335907 84.435798 12.7413127 12.0155039  0.0000000 26.6409266
10 30.081301  1.632653 64.754098 11.0655738  1.2195122  0.0000000 15.5102041
11 29.276316  1.967213 78.525641  3.8216561  2.8301887  0.0000000  9.3645485
12 30.660377  9.813084 60.280374 24.0740741 15.4929577  2.3255814 16.5094340
13 38.288288 37.471783 37.246050 39.8648649 41.5349887 42.5339367 28.1531532
14 26.780627 27.428571 45.584046 22.0289855  5.7306590  2.5787966  9.1168091
15 48.207171  4.466019 83.657588 33.3992095  9.3511450  2.6565465 30.6796117
16  7.236842  2.597403 56.862745  0.6535948  0.0000000  0.0000000  6.5359477
17 17.560976  2.803738 61.611374  7.1090047  0.4651163  0.0000000 24.0384615
18        NA        NA        NA         NA         NA         NA         NA
19 35.023041  9.722222 28.440367 11.4155251  4.1095890  2.2935780  1.3636364
20  4.845815  9.210526  4.405286  5.0632911  2.5531915  5.0847458 13.6752137
21  8.490566  0.952381 41.904762  9.5238095  7.6190476  0.0000000  3.7735849
22 17.085427  5.853659 54.245283 15.0234742  1.3824885  0.0000000 24.6445498
23 22.388060 13.333333 30.656934 18.5185185 11.6788321  5.8394161  5.1094891
24 44.307692  4.294479 79.821958  8.7349398  0.2958580  0.5917160 18.6708861
25 45.522388 16.176471 87.591241  5.8394161  0.7142857  0.0000000  9.3023256
26 37.631184  1.923077 77.647059 10.5341246  0.7309942  0.0000000 15.5624037
27 51.335312  9.821429 73.939394 35.1351351  1.1940299  0.0000000  9.4801223
28 38.547486  6.914894 44.808743  8.5106383 11.1731844  4.7619048  9.1891892
29 35.172414  4.166667 57.534247 16.5517241  4.0000000  2.6490066 26.7605634
30 10.714286 11.111111 62.295082 16.9642857  0.8333333  0.0000000  0.8474576
31 25.391850  5.625000 41.692790 17.9245283  5.2959502  2.1739130 10.9034268
32  7.276507  2.286902 29.166667  6.4315353  7.6763485  0.6185567  3.5714286
33 40.807175  1.333333 89.639640 23.6607143  0.4405286  0.0000000  5.3811659
34 40.077821  7.630522 81.322957 13.7931034  0.7547170  0.0000000 41.4342629
35 69.653179 10.724638 84.090909 27.1428571 19.4915254  0.8426966 19.6531792
36 29.288026 11.272142 59.354839 16.9082126 10.7717042  1.1272142 19.7749196
37 15.686275  8.496732 21.476510  7.2847682  4.6357616  0.6622517  6.7114094
38 23.469388 36.363636 32.653061 18.2795699  8.3333333  1.0309278 25.0000000
39 16.780822  7.876712 57.947020 11.1486486  0.9771987  0.0000000 30.9278351
40  1.562500  3.333333 22.580645  6.2500000  1.6129032  1.6129032  3.2258065
41  7.438017  5.785124 14.876033  9.1666667  4.1322314  2.5000000  5.8333333
42 19.934641  5.901639 31.803279  8.4967320  2.9411765  1.3114754  7.1895425
43 32.773109  7.563025 48.739496 15.1260504 10.0840336  1.6806723 19.4915254
44 46.244131 10.526316 88.596491 11.1842105  5.6521739  0.2123142 16.6666667
45 46.341463  2.439024 87.596899 23.1770833 10.6217617  0.0000000  6.7901235
46 37.859008 12.339332 81.861575 15.3266332  1.8823529  0.7075472  6.2189055
47  8.376963  2.094241  7.853403  4.1884817 10.9947644 15.1832461  3.6649215
48 17.153285  4.710145 42.028986  8.3333333  7.9710145  1.8115942  7.6086957
49 40.937500  1.562500 83.280757 10.6583072  7.2100313  0.0000000  7.9617834
50        NA        NA        NA         NA         NA         NA         NA
51 38.728324  5.232558 65.497076 19.8830409 10.1190476  2.3391813 29.1666667
52 47.368421 12.631579 51.408451 14.7368421  4.2105263  2.1052632 48.0701754
53 44.637681  4.571429 58.452722 23.8505747  8.2386364  1.6949153 36.1031519
54 14.285714  6.818182 18.320611  2.9850746  3.7313433  8.7301587  6.8702290
55 26.785714 37.288136 22.033898 38.9830508 36.8421053 44.0677966 28.0701754
56 28.136882  6.766917 61.992620  8.9887640  9.1911765  0.7272727 19.8443580
57 36.614173  9.055118 52.362205 16.5354331  6.2992126  0.3937008 21.3438735
58 55.491329  4.322767 86.206897  9.5652174  2.5862069  0.2873563 15.8045977
59        NA        NA        NA         NA         NA         NA         NA
60 41.384863  4.019293 83.922830 14.2394822  0.6410256  0.1605136 11.6129032
61 37.101064  2.516556 78.912467  8.2337317  1.5915119  0.0000000 11.7333333
62 32.258065 18.072289 42.971888  6.4257028  1.6064257  0.0000000  2.4096386
63  3.164557  3.164557  8.860759  2.5316456  3.8216561  0.0000000  1.2658228
64 69.811321  5.555556 72.222222 32.0754717  3.7037037  7.4074074 16.9811321
65  9.523810  5.000000 20.000000 10.0000000  0.0000000  0.0000000  4.7619048
66 40.555556  1.258993 86.135182 21.5411559 10.4273504  0.1686341 12.4074074
67 15.775401  4.232804 75.331565  9.3085106  0.7915567  0.5277045 12.7320955
      C19H_w    C19J_w    C19K_w       C17      C23         C5        C6
1  27.102804 34.722222 15.420561  9.361775 32.54225  36.082474 53.559322
2  11.784512 60.067114 27.551020 13.828652 38.74640  36.211699 61.494253
3  11.790393 55.291577 18.064516 14.452893 37.74129  47.847682 67.107438
4  15.657312 64.580370 40.857143 17.936306 43.00139  49.440994 38.868389
5   4.803493 21.929825  6.250000 11.556231 36.67169  65.486726 83.850932
6  17.215190 57.960199 23.514851 12.640545 38.16354  62.308998 51.355932
7  16.326531 20.408163 22.000000  4.573034 27.88571  27.906977 77.777778
8   5.405405 11.818182  2.752294  8.843750 34.06977  38.709677 74.157303
9  33.590734 56.976744 29.343629 11.611702 34.68085  40.750670 44.892473
10 30.327869 66.666667 57.894737 19.362595 41.74409  38.783270 56.273764
11 16.442953 56.435644 20.569620 18.877493 44.50857  56.410256 49.710983
12 21.226415 33.177570 25.821596  8.462322 32.99384  23.711340 59.387755
13 33.783784 31.674208 25.396825  9.013910 33.90187  14.461538 55.205047
14 14.204545 19.770774 10.795455 11.169065 35.20751  27.797834 52.142857
15 33.076923 77.756286 43.243243 19.732727 44.69216  46.539379 85.294118
16  8.496732 12.418301  1.333333 11.848039 37.51000  52.709360 57.843137
17 34.285714 49.056604 23.004695 10.787986 35.67883   7.266436 80.756014
18        NA        NA        NA 18.406687 45.89720 100.000000 59.161148
19  1.818182 20.091324 12.385321 10.040000 35.22380  22.070845 55.890411
20 14.592275  5.982906  4.721030 12.000000 36.73000  54.250000 49.250000
21  3.809524 22.641509  8.571429        NA 31.99600  30.737705 71.600000
22 35.545024 40.758294 19.626168 13.540146 40.93822  24.264706 75.925926
23  8.029197 35.294118 21.014493  5.189024 30.38911  16.285714 75.142857
24 21.543408 54.682779 24.260355 17.273224 43.40110  91.256831 52.054795
25  6.923077 80.291971 53.333333 11.835616 36.63839  27.678571 75.555556
26 23.270440 64.338782 36.592593 19.519737 45.58311  53.437095 40.129032
27 11.818182 61.261261 41.616766        NA 40.22715  71.568627 46.898263
28 15.135135 46.195652 10.439560  7.313725 30.00895  19.361702 48.903509
29 23.913043 54.362416 46.621622  8.884211 33.16667  23.466667 64.155844
30  2.631579 30.578512  7.563025 11.994220 39.58491  82.702703 70.430108
31 12.074303 28.301887 12.380952 11.041485 36.52203  36.345776 57.874016
32  4.842105  8.488613  4.421053  8.484018 34.42530  69.545455 66.565809
33  6.666667 53.777778 27.111111 15.251701 39.18345  64.666667 36.458333
34 38.524590 64.591440 32.818533 15.466276 42.87952  50.453172 35.014837
35 22.608696 80.965909 65.242165 16.838384 42.98477 100.000000 67.676768
36 19.967794 57.487923 26.136364 16.943560 41.25426   3.818953 47.289720
37 10.135135 17.218543  9.271523  6.159744 31.93939  63.030303 63.880597
38 29.473684 15.463918 11.340206  7.511905 30.82778  46.601942 60.591133
39 32.871972 30.819672 23.606557 16.288235 40.26866  26.627219 74.705882
40  3.225806  9.836066  1.612903  6.447761 31.23026  76.373626 79.411765
41  6.779661 10.743802  6.666667  9.568966 35.45890  51.895044 67.787115
42 10.784314 20.327869 13.486842        NA 38.40811  25.198939 78.457447
43 21.367521 38.983051 20.338983  7.909091 30.26244  29.223744 62.895928
44 27.400468 55.629139 26.200873 18.727969 46.75577  34.482759 39.080460
45  7.761194 67.866324 35.824742 17.003976 43.66203  33.521657 62.197393
46  6.234414 43.405276 24.574209 16.692790 43.33461 100.000000 63.036810
47 13.089005  7.329843  4.188482 12.599119 37.88372  59.143969 52.156863
48 15.942029 24.727273 11.594203 14.101190 37.86392  62.138728 53.623188
49 11.250000 48.417722 26.332288 14.651852 39.00000  38.957816 54.342432
50        NA        NA        NA        NA       NA  23.157895 33.684211
51 37.278107 56.321839 32.163743  7.809384 30.64516  21.994135 76.246334
52 51.929825 52.631579 34.035088 11.379487 32.10513  20.051414 56.923077
53 37.356322 66.666667 45.454545 15.992537 40.92112  42.997543 64.603960
54  4.477612 13.636364  5.223881  5.789954 31.59091  79.185520 70.967742
55 21.052632 20.689655 25.423729 11.419355 37.70238  34.042553 55.789474
56 16.078431 52.434457 15.867159 13.649596 39.92458  43.478261 76.010782
57 32.015810 63.779528 48.425197 11.301994 37.18750  87.818697  9.039548
58 24.137931 66.091954 34.293948 15.907692 39.23136  41.131105 67.179487
59        NA        NA        NA 11.405204 37.33725  78.545455 38.043478
60 14.009662 47.504026 32.419355        NA 51.32191  68.930390 34.074074
61  7.877170 67.639257 40.425532 14.621562 41.63072  56.810631 52.164262
62 10.843373 24.497992  6.024096  6.799257 27.62782  89.338235 89.338235
63  3.773585 10.062893  5.732484  7.508824 37.19074  45.308311 71.815718
64 16.981132 77.358491 54.716981  9.311111 32.35366  31.578947 50.526316
65  5.000000 15.789474 20.000000        NA 37.72906  43.457944 47.598253
66 20.260223 66.495726 21.837088 18.525473 43.17188  43.839542 47.058824
67 21.010638 53.439153 21.693122 22.739130 46.90909  52.173913 79.259259
    UNI_EDU  SPECIAL      C22
1  97.96610 72.44898 51.71233
2  67.69663 70.90909 36.91460
3  82.14876 70.21631 55.53719
4  63.23338 41.85137 40.82687
5  86.80352 43.65325 10.91445
6  96.25850 64.29840 36.48649
7  98.86364 22.98851 50.00000
8  89.07104 81.42077 37.63441
9  88.77005 90.76087 49.20213
10 96.57795 60.07605 64.63878
11 93.42857 71.34670 43.46591
12 96.45094 86.49789 43.17719
13 99.53775 76.22047 50.46440
14 89.44544 27.50929 39.67391
15 71.71904 48.42932 53.91621
16 99.01961 80.78818 42.15686
17 67.70833 47.51773 43.29897
18 93.22957 82.17899 43.14330
19 80.11050 77.20798 33.15068
20 97.25000 71.75000 36.50000
21 79.60000 81.70213 40.40000
22 81.68498 51.48148 58.39416
23 97.42857 55.17241 28.85714
24 74.59016 55.61644 55.19126
25 95.57522 79.20354 45.37445
26 75.53476 36.60834 40.10349
27 65.60847 56.11702 46.99739
28 88.86510 69.08316 44.87179
29 74.63557 68.33333 47.50656
30 68.36158 24.85876 35.00000
31 99.22780 72.12121 27.60618
32 86.98941 33.88805 21.45015
33 85.63218 73.00613 41.91617
34 73.37278 38.32335 32.64706
35 72.91139 50.12658 42.42424
36 99.02643 12.46418 17.93103
37 90.93656 92.55663 42.34234
38 86.15385 67.03297 45.54455
39 80.29851 58.45697 72.35294
40 94.76744 85.92593 35.05747
41 82.78932 55.85284 52.57143
42 86.93333 62.46649 31.83024
43 81.44796 68.18182 60.63348
44 81.80077 57.77351 39.27203
45 85.05976 65.26946 50.39526
46 89.25926 64.33915 50.41841
47 78.74016 61.41732 39.68872
48 93.57798 73.08869 51.07692
49 86.17284 75.87065 45.92593
50 72.70341 71.08108 27.67624
51 70.67449 64.70588 62.46334
52 82.30769 76.09254 64.58333
53 68.56436 48.50000 53.76884
54 40.38462 48.27586 29.09091
55 93.68421 39.36170 58.94737
56 84.28184 69.56522 62.05962
57 99.43503 46.02273 23.66197
58 96.66667 88.60104 41.02564
59 95.20295 65.18519 34.90196
60 60.46875 68.01872 45.91382
61 69.57520 37.85961 38.50385
62 99.26471 77.20588 45.22059
63 81.55080 52.60274 43.75000
64 91.07143 31.91489 44.94382
65 91.81818 72.60274 50.21097
66 86.33094 41.21037 45.17986
67 93.70460 78.93462 27.05314

RData & RDS

  • R’s own file formats
  • R Data:
    • .RData or .rda extensions
    • can contain several objects with their names 😳
  • “serialized” RData:
    • .rds file extension
    • contains one object without a name
  • advantages :
    • extremely flexible
    • pretty fast and/or efficient way to store data
  • downside :
    • not really used by any other programs
load("data/files/leaders-twitter.Rdata")
save("elites.data", file = "data/files/leaders-twitter2.Rdata")
str(elites.data, give.head = T)
List of 6
 $ US     :'data.frame':    666 obs. of  23 variables:
  ..$ merge          : chr [1:666] "adl_initiative" "alangrayson" "alannunnelee" "alfranken" ...
  ..$ id             : int [1:666] 31455249 41017380 35663608 7334402 17220934 237403203 20209807 30912937 38401099 19677673 ...
  ..$ screen_name    : chr [1:666] "ADL_Initiative" "AlanGrayson" "AlanNunnelee" "alfranken" ...
  ..$ verified       : logi [1:666] FALSE FALSE FALSE TRUE TRUE TRUE ...
  ..$ url            : chr [1:666] "http://www.ADLnet.gov" "http://graysonforcongress.com" "http://senatornunnelee.com" "http://www.alfranken.com/" ...
  ..$ created_at     : chr [1:666] "Wed Apr 15 17:01:11 +0000 2009" "Tue May 19 01:00:40 +0000 2009" "Mon Apr 27 03:55:12 +0000 2009" "Sun Jul 08 21:48:38 +0000 2007" ...
  ..$ name           : chr [1:666] "ADL Initiative" "Alan Grayson" "Alan Nunnelee" "Al Franken" ...
  ..$ followers_count: int [1:666] 1281 32086 210 100863 2536631 98740 4774 2564 4239 10657 ...
  ..$ location       : chr [1:666] "Alexandria, VA, USA" "Orlando, FL" "Tupelo, MS" "Minnesota" ...
  ..$ description    : chr [1:666] "Advanced Distributed Learning Initiative" "" "Senator, State of Mississippi" "Official TeamFranken Twitter feed" ...
  ..$ time_zone      : chr [1:666] "Eastern Time (US & Canada)" "Eastern Time (US & Canada)" "Central Time (US & Canada)" "Central Time (US & Canada)" ...
  ..$ listed_count   : int [1:666] 119 1988 16 5176 36583 2427 521 145 265 518 ...
  ..$ lang           : chr [1:666] "en" "en" "en" "en" ...
  ..$ friends_count  : int [1:666] 207 6 1 20992 9 52 112 596 393 790 ...
  ..$ statuses_count : int [1:666] 2291 481 1 1132 695 701 386 696 2261 47 ...
  ..$ dw.nom.1       : num [1:666] NA -0.384 0.464 -0.472 NA 0.467 0.367 NA NA -0.275 ...
  ..$ icpsr.id       : int [1:666] NA 20908 21147 40904 NA 21119 20111 NA NA 20302 ...
  ..$ nameid         : chr [1:666] NA "G000556" "N000186" NA ...
  ..$ title          : chr [1:666] "Others" "House" "House" "Senate" ...
  ..$ party          : chr [1:666] "Nonpartisan" "D" "R" "D" ...
  ..$ state          : chr [1:666] NA NA "MS" NA ...
  ..$ gender         : chr [1:666] NA NA "M" NA ...
  ..$ idealPoint     : num [1:666] NA NA 0.829 NA NA ...
 $ UK     :'data.frame':    362 obs. of  4 variables:
  ..$ id             : int [1:362] 16884084 14561015 14758838 19858924 15157283 66774405 60738400 101712079 36664451 55253731 ...
  ..$ screen_name    : chr [1:362] "BrandonLewis" "damian57" "DamianCollins" "Michael_Ellis1" ...
  ..$ followers_count: int [1:362] 3300 2319 3780 1280 5143 3274 2302 2062 2599 3332 ...
  ..$ party          : chr [1:362] "conservatives" "conservatives" "conservatives" "conservatives" ...
 $ spain  :'data.frame':    298 obs. of  4 variables:
  ..$ id             : int [1:298] 343447873 16084460 21361705 304287573 18238467 301388743 20509689 50982086 249122306 76914701 ...
  ..$ screen_name    : chr [1:298] "marianorajoy" "patxilopez" "JoseantonioJun" "_Rubalcaba_" ...
  ..$ followers_count: int [1:298] 354256 152766 136280 136196 109201 92172 75649 73222 65644 64707 ...
  ..$ party          : chr [1:298] "pp" "psoe" "psoe" "psoe" ...
 $ NL     :'data.frame':    189 obs. of  4 variables:
  ..$ id             : int [1:189] 232306249 232296344 232294322 232283885 232297519 232305704 232292382 232307064 250842297 250519781 ...
  ..$ screen_name    : chr [1:189] "50PlusZeeland" "50PlusUtrecht" "50PlusO_IJssel" "50PlusFriesland" ...
  ..$ followers_count: int [1:189] 107 78 81 122 100 408 86 136 14 28 ...
  ..$ party          : chr [1:189] "vijftigplus" "vijftigplus" "vijftigplus" "vijftigplus" ...
 $ germany:'data.frame':    765 obs. of  4 variables:
  ..$ id             : int [1:765] 446558723 742830624 866494242 1375039512 1347962725 1448790385 1370417857 1269042739 1414088353 1339144020 ...
  ..$ screen_name    : chr [1:765] "_kraftsebastian" "Achim_Reinhardt" "ACichowicz" "AfD_Bayern" ...
  ..$ followers_count: int [1:765] 582 563 1765 452 357 103 114 629 272 373 ...
  ..$ party          : chr [1:765] "journalisten" "journalisten" "journalisten" "AFD" ...
 $ italy  :'data.frame':    215 obs. of  4 variables:
  ..$ id             : int [1:215] 399720804 16562213 540895773 228010525 460264679 426708964 45937235 376218450 372344749 149060372 ...
  ..$ screen_name    : chr [1:215] "_alessiovinci" "_arianna" "ale_moretti" "AlemannoTW" ...
  ..$ followers_count: int [1:215] 9934 19185 9936 32479 34877 429782 26935 37278 37916 73324 ...
  ..$ party          : chr [1:215] "" "" "PD" "PDL" ...
saveRDS(elites.data, file = "data/files/leaders-twitter.rds")
elites_twitter <- readRDS("data/files/leaders-twitter.rds")

JSON

  • JavaScript Object Notation (JSON)
  • plain text file
  • two standards to save the same .json file type
    • JSON Lines: one record per line, like a csv (use jsonlite::stream_in())
    • JSON: all records in one JSON string (use jsonlite::fromJSON()
  • advantages :
    • very flexible beyond tabular data
    • widely used on the internet
  • downside :
    • allows for mind bending complexity (as we’ve seen yesterday)
json_file <- repurrrsive::gh_repos_json()
gh_repos <- jsonlite::fromJSON(json_file, simplifyDataFrame = FALSE)
gh_repos |> 
  lobstr::tree(max_length = 20)
<list>
├─<list>
│ ├─<list>
│ │ ├─id: 61160198
│ │ ├─name: "after"
│ │ ├─full_name: "gaborcsardi/after"
│ │ ├─owner: <list>
│ │ │ ├─login: "gaborcsardi"
│ │ │ ├─id: 660288
│ │ │ ├─avatar_url: "https://avatars.githubuserconten..."
│ │ │ ├─gravatar_id: ""
│ │ │ ├─url: "https://api.github.com/users/gab..."
│ │ │ ├─html_url: "https://github.com/gaborcsardi"
│ │ │ ├─followers_url: "https://api.github.com/users/gab..."
│ │ │ ├─following_url: "https://api.github.com/users/gab..."
│ │ │ ├─gists_url: "https://api.github.com/users/gab..."
│ │ │ ├─starred_url: "https://api.github.com/users/gab..."
│ │ │ ├─subscriptions_url: "https://api.github.com/users/gab..."
│ │ │ ├─organizations_url: "https://api.github.com/users/gab..."
│ │ │ ├─repos_url: "https://api.github.com/users/gab..."
... 
jsonlite::stream_out(elites.data$UK, file("data/elites_data_UK.json"))

Complete! Processed total of 362 rows.
readLines("data/elites_data_UK.json") |> 
  head() |> 
  cat()
{"id":16884084,"screen_name":"BrandonLewis","followers_count":3300,"party":"conservatives"} {"id":14561015,"screen_name":"damian57","followers_count":2319,"party":"conservatives"} {"id":14758838,"screen_name":"DamianCollins","followers_count":3780,"party":"conservatives"} {"id":19858924,"screen_name":"Michael_Ellis1","followers_count":1280,"party":"conservatives"} {"id":15157283,"screen_name":"SteveBakerMP","followers_count":5143,"party":"conservatives"} {"id":66774405,"screen_name":"MarkReckless","followers_count":3274,"party":"conservatives"}

Excercises 1

  1. Download the file from this address into the “data” folder and name it “internet_usage.xlsx” using R: https://api.worldbank.org/v2/en/indicator/IT.NET.USER.ZS?downloadformat=excel (hint: there are several R functions to download files, we’ve even seen one above)
  2. Reproduce this plot (hint: you can get grey out cases with gghighlight):
  1. I created a terrible CSV file. Try to read it in anyway: “data/csv-bad-example.csv” (hint: since csvs are text files, you can look at them with any text editor)
  2. Even when you manage to read in the file, the table still has issue. Explain what they are and how to correct them (hint: look at the data types of the columns)

Transparent and efficient use of files

Directory Structure

Weidmann (2023) suggest that your research project should have this directory structure:

  • raw/
    • What lives here: raw data you collected yourself or that comes from other sources
    • What to do with the content: read only!
  • analysis/
    • What lives here: cleaned/intermediate/analysis data and the analysis scripts that produced them
    • What does not live here: data that can’t be recreated from the raw data with the analysis scripts
    • What to do with the content: read input data and write intermediate data; produce analysis results
  • replication/
    • What lives here: properly anonymized, cleaned data that is ready to be shared with others
    • What to do with the content: write-only (at the end of a project)

Directory Structure

I find this structure more sensible:

  • data/
    • What lives here: all raw data and intermediate data
    • What to do with the content: write data produced with an analysis script from a previous version of the data
  • analysis/
    • What lives here: the RMD/Quarto files that clean, wrangle, and analyse the data
    • What does not live here: data
    • What to do with the content: execute the files to take a step in the data analysis pipeline
  • communication/
    • What lives here: presentations and paper(s) communicating the results or status of your project
  • readme: explains how everything belongs together

My preferred data structure:

my_awsome_paper
├── analysis
│   ├── 01._ingest-and-clean.qmd
│   ├── 02._annotation.qmd
│   └── 03._visualisationa-and-modelling.qmd
├── communication
│   ├── paper.qmd
│   └── slides.qmd
├── data
│   ├── 00._raw.csv
│   ├── 01._clean.rds
│   ├── 02._annotated.rds
│   └── 03._final.rds
└── readme.md

4 directories, 10 files

Projects and relative paths

Specifically RStudio projects are a good way to organise your data, analysis scripts and academic output. This does not change your workflow dramatically, but makes your projects portable (and easier to back up). When working in a project, you can reference data by it’s relative position to the project’s main folder. This will mean that if the folder is copied to a different location, all your code will still run. The best example is the project we are in now.

This will work on your computer:

plenary_speeches_raw <- rio::import("data/files/csv-example.csv")

This won’t, even though it works on my machine 😛:

plenary_speeches_raw <- rio::import("/home/johannes/Documents/GitHub/ess-web-scraping-data-management/03_Working_with_Files/data/files/csv-example.csv")

RStudio projects are not really necessary for this, especially given that Quarto sets the working directory of your documents to it’s source location by default. But the idea of keeping everything together can save you a lot of time otherwise spent on debugging issues (your own or these of others).

File names

File names should be:

  • machine-readable
  • human-readable
  • sort well
  • start with a number (should lead with 0 if necessary)
  • do not use capitalisation (file names are treated differently on Windows)
  • no whitespace: use _ to separate parts of the name (number, step, etc); use - to separate words (“ingest and clean”)
my_awsome_paper
├── analysis
│   ├── 01._ingest-and-clean.qmd
│   ├── 02._annotation.qmd
│   └── 03._visualisationa-and-modelling.qmd
├── communication
│   ├── paper.qmd
│   └── slides.qmd
├── data
│   ├── 00._raw.csv
│   ├── 01._clean.rds
│   ├── 02._annotated.rds
│   └── 03._final.rds
└── readme.md

4 directories, 10 files

Make Files

For example, GNU Make is a tool which controls the generation of executables and other non-source files of a program from the program’s source files. It implements a paradigm that can be very useful in projects:

  1. The make file contains the order in which results are built from the raw files: that is data and analysis scripts
  2. When running the make command, make checks which files are up to date and which ones need (re-)building

Make files can help you keep track of your ongoing projects by making sure all files that depend on each other are up to data. You can check out the {targets} R package, which implements some advanced control over your projects and some nice visualisations. But the basic idea is simple:

Make Files

Say you found an issue in your pre-processing. You fix the issue and re-run the pre-processing script. But what else needs to be fixed? From the perspective of make, everything in the flowchart above after the pre-processing step needs to be rebuilt. If you name your files in a sensible way and record the order of things, that should be no problem. You can use a little functions that implements make-like processing

make_quarto <- function(files, 
                        destfiles = NULL, 
                        output_ext = ".html", 
                        ...) {
  
  if (is.null(destfiles)) destfiles <- paste0(tools::file_path_sans_ext(files), output_ext)
  
  # the oldest file should be the first source file, I record the first destfile, since it should be newer
  t <- file.info(destfiles[1])$ctime
  
  for (i in seq_along(files)) {
    if (
      # render file if source is newer than destination
      isTRUE(file.info(files[i])$ctime >= file.info(destfiles[i])$ctime) || 
      # or if output is NOT newer than previous destination file
      !isTRUE(file.info(destfiles[i])$ctime >= t) 
    ) {
      cli::cli_progress_step("Making {destfiles[i]}.")
      quarto::quarto_render(
        input = files[i],
        output_file = destfiles[i]
      )
      cli::cli_progress_done()
    } else {
      cli::cli_inform(c("v" = "{destfiles[i]} already up to date."))
    }
    t <- file.info(destfiles[i])$ctime
  }
  
}

This is very barebones compared to the targets package, but I never really needed any of the other functions. Mostly I have been using the actual GNU make, but it’s syntax is quite different from other programs and it is not installed by default on Windows.

Excercise 2

  1. set up a directory for your research project and fill it with the mock data and analysis files you imagine you need
  2. write a readme file that contains documentation of your file structure
  3. Present it to the class tomorrow (for volunteers)

Working with many files at the same time

Reading multiple files

Let’s say your data is spread over several files:

dataset_files <- list.files("data/files", pattern = ".csv$", full.names = TRUE)
dataset_files
[1] "data/files/csv-example-quotes.csv"   
[2] "data/files/csv-example-semicolon.csv"
[3] "data/files/csv-example.csv"          

You can read in one file without an issue:

rio::import(dataset_files[1])
    numa ida numb idb   kmdist   midist       capnamea
1      2 USA   20 CAN   738.31   460.56 Washington, DC
2      2 USA   31 BHM  1639.23  1022.12 Washington, DC
3      2 USA   40 CUB  1831.13  1141.30 Washington, DC
4      2 USA   41 HAI  2308.86  1439.25 Washington, DC
5      2 USA   42 DOM  2381.58  1485.71 Washington, DC
6      2 USA   51 JAM  2338.15  1458.44 Washington, DC
7      2 USA   52 TRI  3528.94  2200.79 Washington, DC
8      2 USA   53 BAR  3363.30  2096.76 Washington, DC
9      2 USA   54 DMA  3240.08  2021.01 Washington, DC
10     2 USA   55 GRN  3365.32  2098.78 Washington, DC
11     2 USA   56 SLU  3211.80  2002.83 Washington, DC
12     2 USA   57 SVG  3272.40  2040.20 Washington, DC
13     2 USA   58 AAB  2862.34  1784.67 Washington, DC
14     2 USA   60 SKN  2787.60  1738.21 Washington, DC
15     2 USA   80 BLZ  2632.06  1641.25 Washington, DC
16     2 USA   70 MEX  3054.24  1903.85 Washington, DC
17     2 USA   90 GUA  3022.93  1884.66 Washington, DC
18     2 USA   91 HON  2951.22  1840.22 Washington, DC
19     2 USA   92 SAL  3054.24  1904.86 Washington, DC
20     2 USA   93 NIC  3134.03  1954.35 Washington, DC
21     2 USA   94 COS  3314.82  2067.47 Washington, DC
22     2 USA   95 PAN  3358.25  2093.73 Washington, DC
23     2 USA  100 COL  3846.08  2397.74 Washington, DC
24     2 USA  101 VEN  3382.49  2108.88 Washington, DC
25     2 USA  110 GUY  4049.09  2525.00 Washington, DC
26     2 USA  115 SUR  4315.73  2690.64 Washington, DC
27     2 USA  130 ECU  4357.14  2716.90 Washington, DC
28     2 USA  135 PER  5707.51  3558.23 Washington, DC
29     2 USA  140 BRA  6789.22  4233.92 Washington, DC
30     2 USA  145 BOL  6231.70  3885.47 Washington, DC
31     2 USA  150 PAR  7456.83  4650.04 Washington, DC
32     2 USA  155 CHL  8095.15  5046.97 Washington, DC
33     2 USA  160 ARG  8401.18  5238.87 Washington, DC
34     2 USA  165 URU  8465.82  5278.26 Washington, DC
35     2 USA  200  UK  5991.32  3735.99 Washington, DC
36     2 USA  205 IRE  5499.45  3428.95 Washington, DC
37     2 USA  210 NTH  6259.98  3903.65 Washington, DC
38     2 USA  211 BEL  6308.46  3932.94 Washington, DC
39     2 USA  212 LUX  6444.81  4018.79 Washington, DC
40     2 USA  220 FRN  6255.94  3900.62 Washington, DC
41     2 USA  221 MNC  6819.52  4252.10 Washington, DC
42     2 USA  223 LIE  6794.27  4236.95 Washington, DC
43     2 USA  225 SWZ  6695.29  4175.34 Washington, DC
44     2 USA  230 SPN  6166.05  3844.06 Washington, DC
45     2 USA  232 AND  6446.83  4019.80 Washington, DC
46     2 USA  235 POR  5816.59  3626.91 Washington, DC
47     2 USA  255 GMY  6806.39  4244.02 Washington, DC
48     2 USA  260 GFR  6496.32  4051.11 Washington, DC
49     2 USA  265 GDR  6806.39  4244.02 Washington, DC
50     2 USA  290 POL  7268.97  4532.88 Washington, DC
51     2 USA  300 AUH  7201.30  4490.46 Washington, DC
52     2 USA  305 AUS  7201.30  4490.46 Washington, DC
53     2 USA  310 HUN  7441.68  4639.94 Washington, DC
54     2 USA  315 CZE  6974.05  4348.05 Washington, DC
55     2 USA  316 CZR  6974.05  4348.05 Washington, DC
56     2 USA  317 SLO  7254.83  4523.79 Washington, DC
57     2 USA  325 ITA  7345.73  4580.35 Washington, DC
58     2 USA  331 SNM  7175.04  4474.30 Washington, DC
59     2 USA  338 MLT  7804.27  4866.18 Washington, DC
60     2 USA  339 ALB  7854.77  4897.49 Washington, DC
61     2 USA  345 SER  7711.35  4807.60 Washington, DC
62     2 USA  341 MNG  7730.54  4820.73 Washington, DC
63     2 USA  343 MAC  7911.33  4932.84 Washington, DC
64     2 USA  344 CRO  7347.75  4581.36 Washington, DC
65     2 USA  345 YUG  7711.35  4807.60 Washington, DC
66     2 USA  346 BOS  7637.62  4762.15 Washington, DC
67     2 USA  349 SLV  7193.22  4485.41 Washington, DC
68     2 USA  350 GRC  8326.44  5192.41 Washington, DC
69     2 USA  352 CYP  9210.19  5742.86 Washington, DC
70     2 USA  355 BUL  8031.52  5007.58 Washington, DC
71     2 USA  359 MLD  8049.70  5018.69 Washington, DC
72     2 USA  360 RUM  8086.06  5041.92 Washington, DC
73     2 USA  365 RUS  7951.73  4958.09 Washington, DC
74     2 USA  366 EST  7050.81  4396.53 Washington, DC
75     2 USA  367 LAT  7197.26  4488.44 Washington, DC
76     2 USA  368 LIT  7393.20  4609.64 Washington, DC
77     2 USA  369 UKR  7936.58  4949.00 Washington, DC
78     2 USA  370 BLR  7575.00  4722.76 Washington, DC
79     2 USA  371 ARM  9512.18  5930.72 Washington, DC
80     2 USA  372 GRG  9527.33  5940.82 Washington, DC
81     2 USA  373 AZE  9805.08  6113.53 Washington, DC
82     2 USA  375 FIN  7003.34  4367.24 Washington, DC
83     2 USA  380 SWD  6713.47  4186.45 Washington, DC
84     2 USA  385 NOR  6322.60  3942.03 Washington, DC
85     2 USA  390 DEN  6600.35  4115.75 Washington, DC
86     2 USA  395 ICE  4571.26  2850.22 Washington, DC
87     2 USA  402 CAP  5772.15  3599.64 Washington, DC
88     2 USA  403 STP  9506.12  5927.69 Washington, DC
89     2 USA  404 GNB  6828.61  4258.16 Washington, DC
90     2 USA  411 EQG  9698.02  6046.87 Washington, DC
91     2 USA  420 GAM  6605.40  4118.78 Washington, DC
92     2 USA  432 MLI  7426.53  4630.85 Washington, DC
93     2 USA  433 SEN  6464.00  4030.91 Washington, DC
94     2 USA  434 BEN  8772.86  5470.16 Washington, DC
95     2 USA  435 MAA  6332.70  3948.09 Washington, DC
96     2 USA  436 NIR  8247.66  5142.92 Washington, DC
97     2 USA  437 CDI  8073.94  5033.84 Washington, DC
98     2 USA  438 GUI  7143.73  4454.10 Washington, DC
99     2 USA  439 BFO  7996.17  4986.37 Washington, DC
100    2 USA  450 LBR  7602.27  4739.93 Washington, DC
101    2 USA  451 SIE  7243.72  4516.72 Washington, DC
102    2 USA  452 GHA  8625.40  5378.25 Washington, DC
103    2 USA  461 TOG  8644.59  5390.37 Washington, DC
104    2 USA  471 CAO  9753.57  6081.21 Washington, DC
105    2 USA  475 NIG  8831.44  5506.52 Washington, DC
106    2 USA  481 GAB  9792.96  6106.46 Washington, DC
107    2 USA  482 CEN 10311.09  6429.66 Washington, DC
108    2 USA  483 CHA  9431.38  5881.23 Washington, DC
109    2 USA  484 CON 10588.84  6602.37 Washington, DC
110    2 USA  490 DRC 10588.84  6602.37 Washington, DC
111    2 USA  500 UGA 11790.74  7351.79 Washington, DC
112    2 USA  501 KEN 12237.16  7629.54 Washington, DC
113    2 USA  510 TAZ 12817.91  7992.13 Washington, DC
114    2 USA  511 ZAN 12812.86  7989.10 Washington, DC
115    2 USA  516 BUI 11739.23  7319.47 Washington, DC
116    2 USA  517 RWA 11672.57  7278.06 Washington, DC
117    2 USA  520 SOM 12707.82  7923.45 Washington, DC
118    2 USA  522 DJI 11770.54  7339.67 Washington, DC
119    2 USA  530 ETH 11628.13  7249.78 Washington, DC
120    2 USA  531 ERI 11151.41  6952.84 Washington, DC
121    2 USA  540 ANG 10683.78  6661.96 Washington, DC
122    2 USA  541 MZM 13537.03  8440.57 Washington, DC
123    2 USA  551 ZAM 12498.75  7793.16 Washington, DC
124    2 USA  552 ZIM 12848.21  8011.32 Washington, DC
125    2 USA  553 MAW 12816.90  7992.13 Washington, DC
126    2 USA  560 SAF 13118.89  8179.99 Washington, DC
127    2 USA  563 TRA 13118.89  8179.99 Washington, DC
128    2 USA  564 OFS 13178.48  8217.36 Washington, DC
129    2 USA  565 NAM 11976.58  7467.94 Washington, DC
130    2 USA  570 LES 13254.23  8264.83 Washington, DC
131    2 USA  571 BOT 12857.30  8016.37 Washington, DC
132    2 USA  572 SWA 13419.87  8367.85 Washington, DC
133    2 USA  580 MAG 14367.25  8958.70 Washington, DC
134    2 USA  581 COM 13516.83  8427.44 Washington, DC
135    2 USA  590 MAS 15357.05  9575.81 Washington, DC
136    2 USA  591 SEY 14051.12  8761.75 Washington, DC
137    2 USA  600 MOR  6248.87  3896.58 Washington, DC
138    2 USA  615 ALG  6892.24  4297.55 Washington, DC
139    2 USA  616 TUN  7450.77  4646.00 Washington, DC
140    2 USA  620 LIB  7952.74  4959.10 Washington, DC
141    2 USA  625 SUD 10682.77  6660.95 Washington, DC
142    2 USA  630 IRN 10335.33  6444.81 Washington, DC
143    2 USA  640 TUR  8869.82  5530.76 Washington, DC
144    2 USA  645 IRQ 10087.88  6290.28 Washington, DC
145    2 USA  651 EGY  9448.55  5891.33 Washington, DC
146    2 USA  652 SYR  9564.70  5964.05 Washington, DC
147    2 USA  660 LEB  9505.11  5926.68 Washington, DC
148    2 USA  663 JOR  9693.98  6044.85 Washington, DC
149    2 USA  666 ISR  9543.49  5950.92 Washington, DC
150    2 USA  670 SAU 11007.99  6863.96 Washington, DC
151    2 USA  678 YAR 11571.57  7215.44 Washington, DC
152    2 USA  679 YEM 11571.57  7215.44 Washington, DC
153    2 USA  680 YPR 11875.58  7404.31 Washington, DC
154    2 USA  690 KUW 10659.54  6646.81 Washington, DC
155    2 USA  692 BAH 11127.17  6938.70 Washington, DC
156    2 USA  694 QAT 11169.59  6963.95 Washington, DC
157    2 USA  696 UAE 11501.88  7172.01 Washington, DC
158    2 USA  698 OMA 11832.15  7378.05 Washington, DC
159    2 USA  700 AFG 11295.84  7043.74 Washington, DC
160    2 USA  701 TKM 10511.07  6553.89 Washington, DC
161    2 USA  702 TAJ 10881.74  6785.18 Washington, DC
162    2 USA  703 KYR 10671.66  6653.88 Washington, DC
163    2 USA  704 UZB 10598.94  6609.44 Washington, DC
164    2 USA  705 KZK 10645.40  6637.72 Washington, DC
165    2 USA  710 CHN 11348.36  7076.06 Washington, DC
166    2 USA  711 TBT 12415.93  7741.65 Washington, DC
167    2 USA  712 MON 10549.45  6578.13 Washington, DC
168    2 USA  713 TAW 12774.48  7964.86 Washington, DC
169    2 USA  730 KOR 11330.18  7063.94 Washington, DC
170    2 USA  731 PRK 11156.46  6955.87 Washington, DC
171    2 USA  732 ROK 11330.18  7063.94 Washington, DC
172    2 USA  740 JPN 11069.60  6902.34 Washington, DC
173    2 USA  750 IND 12227.06  7623.48 Washington, DC
174    2 USA  760 BHU 12676.51  7904.26 Washington, DC
175    2 USA  770 PAK 11545.31  7199.28 Washington, DC
176    2 USA  771 BNG 13130.00  8187.06 Washington, DC
177    2 USA  775 MYA 13997.59  8727.41 Washington, DC
178    2 USA  780 SRI 14613.69  9112.22 Washington, DC
179    2 USA  790 NEP 12575.51  7841.64 Washington, DC
180    2 USA  781 MAD 14550.06  9072.83 Washington, DC
181    2 USA  800 THI 14369.27  8959.71 Washington, DC
182    2 USA  811 CAM 14598.54  9103.13 Washington, DC
183    2 USA  812 LAO 13924.87  8681.96 Washington, DC
184    2 USA  815 VNM 14622.78  9117.27 Washington, DC
185    2 USA  816 DRV 13480.47  8405.22 Washington, DC
186    2 USA  817 RVN 14622.78  9118.28 Washington, DC
187    2 USA  820 MAL 15503.50  9666.71 Washington, DC
188    2 USA  830 SIN 15727.72  9806.09 Washington, DC
189    2 USA  835 BRU 15190.40  9471.78 Washington, DC
190    2 USA  840 PHI 13972.34  8712.26 Washington, DC
191    2 USA  850 INS 16500.37 10288.87 Washington, DC
192    2 USA  860 ETM 16112.53 10046.47 Washington, DC
193    2 USA  900 AUL 16082.23 10028.29 Washington, DC
194    2 USA  910 PNG 14641.97  9129.39 Washington, DC
195    2 USA  920 NEW 14198.58  8852.65 Washington, DC
196    2 USA  935 VAN 13476.43  8403.20 Washington, DC
197    2 USA  940 SOL 13607.73  8485.01 Washington, DC
198    2 USA  950 FJI 12603.79  7858.81 Washington, DC
199    2 USA  983 MSI 11574.60  7216.45 Washington, DC
200    2 USA  986 PAL 14054.15  8762.76 Washington, DC
201    2 USA  987 FSM 12505.82  7798.21 Washington, DC
202    2 USA  990 WSM 12850.23  8012.33 Washington, DC

But how do you read in several?

Reading multiple files

  1. Get file names in one vector
dataset_files <- list.files("data/files", pattern = ".csv$", full.names = TRUE)
dataset_files
[1] "data/files/csv-example-quotes.csv"   
[2] "data/files/csv-example-semicolon.csv"
[3] "data/files/csv-example.csv"          
  1. Define reading function
read_dat <- function(x) {
  rio::import(x)
}
  1. Loop over files
dataset_list <- map(dataset_files, read_dat)
  1. Bind into one table
bind_rows(dataset_list)
Error in `bind_rows()`:
! Can't combine `..1$kmdist` <double> and `..2$kmdist` <character>.

-> change the read_dat function until all data frames are the same

read_dat <- function(x) {
  rio::import(x) |> 
    mutate(kmdist = str_replace(kmdist, ",", "."),
           midist = str_replace(midist, ",", ".")) |> 
    mutate(kmdist = as.numeric(kmdist),
           midist = as.numeric(midist))
}
map(dataset_files, read_dat) |> 
  bind_rows()
    numa ida numb idb   kmdist   midist       capnamea
1      2 USA   20 CAN   738.31   460.56 Washington, DC
2      2 USA   31 BHM  1639.23  1022.12 Washington, DC
3      2 USA   40 CUB  1831.13  1141.30 Washington, DC
4      2 USA   41 HAI  2308.86  1439.25 Washington, DC
5      2 USA   42 DOM  2381.58  1485.71 Washington, DC
6      2 USA   51 JAM  2338.15  1458.44 Washington, DC
7      2 USA   52 TRI  3528.94  2200.79 Washington, DC
8      2 USA   53 BAR  3363.30  2096.76 Washington, DC
9      2 USA   54 DMA  3240.08  2021.01 Washington, DC
10     2 USA   55 GRN  3365.32  2098.78 Washington, DC
11     2 USA   56 SLU  3211.80  2002.83 Washington, DC
12     2 USA   57 SVG  3272.40  2040.20 Washington, DC
13     2 USA   58 AAB  2862.34  1784.67 Washington, DC
14     2 USA   60 SKN  2787.60  1738.21 Washington, DC
15     2 USA   80 BLZ  2632.06  1641.25 Washington, DC
16     2 USA   70 MEX  3054.24  1903.85 Washington, DC
17     2 USA   90 GUA  3022.93  1884.66 Washington, DC
18     2 USA   91 HON  2951.22  1840.22 Washington, DC
19     2 USA   92 SAL  3054.24  1904.86 Washington, DC
20     2 USA   93 NIC  3134.03  1954.35 Washington, DC
21     2 USA   94 COS  3314.82  2067.47 Washington, DC
22     2 USA   95 PAN  3358.25  2093.73 Washington, DC
23     2 USA  100 COL  3846.08  2397.74 Washington, DC
24     2 USA  101 VEN  3382.49  2108.88 Washington, DC
25     2 USA  110 GUY  4049.09  2525.00 Washington, DC
26     2 USA  115 SUR  4315.73  2690.64 Washington, DC
27     2 USA  130 ECU  4357.14  2716.90 Washington, DC
28     2 USA  135 PER  5707.51  3558.23 Washington, DC
29     2 USA  140 BRA  6789.22  4233.92 Washington, DC
30     2 USA  145 BOL  6231.70  3885.47 Washington, DC
31     2 USA  150 PAR  7456.83  4650.04 Washington, DC
32     2 USA  155 CHL  8095.15  5046.97 Washington, DC
33     2 USA  160 ARG  8401.18  5238.87 Washington, DC
34     2 USA  165 URU  8465.82  5278.26 Washington, DC
35     2 USA  200  UK  5991.32  3735.99 Washington, DC
36     2 USA  205 IRE  5499.45  3428.95 Washington, DC
37     2 USA  210 NTH  6259.98  3903.65 Washington, DC
38     2 USA  211 BEL  6308.46  3932.94 Washington, DC
39     2 USA  212 LUX  6444.81  4018.79 Washington, DC
40     2 USA  220 FRN  6255.94  3900.62 Washington, DC
41     2 USA  221 MNC  6819.52  4252.10 Washington, DC
42     2 USA  223 LIE  6794.27  4236.95 Washington, DC
43     2 USA  225 SWZ  6695.29  4175.34 Washington, DC
44     2 USA  230 SPN  6166.05  3844.06 Washington, DC
45     2 USA  232 AND  6446.83  4019.80 Washington, DC
46     2 USA  235 POR  5816.59  3626.91 Washington, DC
47     2 USA  255 GMY  6806.39  4244.02 Washington, DC
48     2 USA  260 GFR  6496.32  4051.11 Washington, DC
49     2 USA  265 GDR  6806.39  4244.02 Washington, DC
50     2 USA  290 POL  7268.97  4532.88 Washington, DC
51     2 USA  300 AUH  7201.30  4490.46 Washington, DC
52     2 USA  305 AUS  7201.30  4490.46 Washington, DC
53     2 USA  310 HUN  7441.68  4639.94 Washington, DC
54     2 USA  315 CZE  6974.05  4348.05 Washington, DC
55     2 USA  316 CZR  6974.05  4348.05 Washington, DC
56     2 USA  317 SLO  7254.83  4523.79 Washington, DC
57     2 USA  325 ITA  7345.73  4580.35 Washington, DC
58     2 USA  331 SNM  7175.04  4474.30 Washington, DC
59     2 USA  338 MLT  7804.27  4866.18 Washington, DC
60     2 USA  339 ALB  7854.77  4897.49 Washington, DC
61     2 USA  345 SER  7711.35  4807.60 Washington, DC
62     2 USA  341 MNG  7730.54  4820.73 Washington, DC
63     2 USA  343 MAC  7911.33  4932.84 Washington, DC
64     2 USA  344 CRO  7347.75  4581.36 Washington, DC
65     2 USA  345 YUG  7711.35  4807.60 Washington, DC
66     2 USA  346 BOS  7637.62  4762.15 Washington, DC
67     2 USA  349 SLV  7193.22  4485.41 Washington, DC
68     2 USA  350 GRC  8326.44  5192.41 Washington, DC
69     2 USA  352 CYP  9210.19  5742.86 Washington, DC
70     2 USA  355 BUL  8031.52  5007.58 Washington, DC
71     2 USA  359 MLD  8049.70  5018.69 Washington, DC
72     2 USA  360 RUM  8086.06  5041.92 Washington, DC
73     2 USA  365 RUS  7951.73  4958.09 Washington, DC
74     2 USA  366 EST  7050.81  4396.53 Washington, DC
75     2 USA  367 LAT  7197.26  4488.44 Washington, DC
76     2 USA  368 LIT  7393.20  4609.64 Washington, DC
77     2 USA  369 UKR  7936.58  4949.00 Washington, DC
78     2 USA  370 BLR  7575.00  4722.76 Washington, DC
79     2 USA  371 ARM  9512.18  5930.72 Washington, DC
80     2 USA  372 GRG  9527.33  5940.82 Washington, DC
81     2 USA  373 AZE  9805.08  6113.53 Washington, DC
82     2 USA  375 FIN  7003.34  4367.24 Washington, DC
83     2 USA  380 SWD  6713.47  4186.45 Washington, DC
84     2 USA  385 NOR  6322.60  3942.03 Washington, DC
85     2 USA  390 DEN  6600.35  4115.75 Washington, DC
86     2 USA  395 ICE  4571.26  2850.22 Washington, DC
87     2 USA  402 CAP  5772.15  3599.64 Washington, DC
88     2 USA  403 STP  9506.12  5927.69 Washington, DC
89     2 USA  404 GNB  6828.61  4258.16 Washington, DC
90     2 USA  411 EQG  9698.02  6046.87 Washington, DC
91     2 USA  420 GAM  6605.40  4118.78 Washington, DC
92     2 USA  432 MLI  7426.53  4630.85 Washington, DC
93     2 USA  433 SEN  6464.00  4030.91 Washington, DC
94     2 USA  434 BEN  8772.86  5470.16 Washington, DC
95     2 USA  435 MAA  6332.70  3948.09 Washington, DC
96     2 USA  436 NIR  8247.66  5142.92 Washington, DC
97     2 USA  437 CDI  8073.94  5033.84 Washington, DC
98     2 USA  438 GUI  7143.73  4454.10 Washington, DC
99     2 USA  439 BFO  7996.17  4986.37 Washington, DC
100    2 USA  450 LBR  7602.27  4739.93 Washington, DC
101    2 USA  451 SIE  7243.72  4516.72 Washington, DC
102    2 USA  452 GHA  8625.40  5378.25 Washington, DC
103    2 USA  461 TOG  8644.59  5390.37 Washington, DC
104    2 USA  471 CAO  9753.57  6081.21 Washington, DC
105    2 USA  475 NIG  8831.44  5506.52 Washington, DC
106    2 USA  481 GAB  9792.96  6106.46 Washington, DC
107    2 USA  482 CEN 10311.09  6429.66 Washington, DC
108    2 USA  483 CHA  9431.38  5881.23 Washington, DC
109    2 USA  484 CON 10588.84  6602.37 Washington, DC
110    2 USA  490 DRC 10588.84  6602.37 Washington, DC
111    2 USA  500 UGA 11790.74  7351.79 Washington, DC
112    2 USA  501 KEN 12237.16  7629.54 Washington, DC
113    2 USA  510 TAZ 12817.91  7992.13 Washington, DC
114    2 USA  511 ZAN 12812.86  7989.10 Washington, DC
115    2 USA  516 BUI 11739.23  7319.47 Washington, DC
116    2 USA  517 RWA 11672.57  7278.06 Washington, DC
117    2 USA  520 SOM 12707.82  7923.45 Washington, DC
118    2 USA  522 DJI 11770.54  7339.67 Washington, DC
119    2 USA  530 ETH 11628.13  7249.78 Washington, DC
120    2 USA  531 ERI 11151.41  6952.84 Washington, DC
121    2 USA  540 ANG 10683.78  6661.96 Washington, DC
122    2 USA  541 MZM 13537.03  8440.57 Washington, DC
123    2 USA  551 ZAM 12498.75  7793.16 Washington, DC
124    2 USA  552 ZIM 12848.21  8011.32 Washington, DC
125    2 USA  553 MAW 12816.90  7992.13 Washington, DC
126    2 USA  560 SAF 13118.89  8179.99 Washington, DC
127    2 USA  563 TRA 13118.89  8179.99 Washington, DC
128    2 USA  564 OFS 13178.48  8217.36 Washington, DC
129    2 USA  565 NAM 11976.58  7467.94 Washington, DC
130    2 USA  570 LES 13254.23  8264.83 Washington, DC
131    2 USA  571 BOT 12857.30  8016.37 Washington, DC
132    2 USA  572 SWA 13419.87  8367.85 Washington, DC
133    2 USA  580 MAG 14367.25  8958.70 Washington, DC
134    2 USA  581 COM 13516.83  8427.44 Washington, DC
135    2 USA  590 MAS 15357.05  9575.81 Washington, DC
136    2 USA  591 SEY 14051.12  8761.75 Washington, DC
137    2 USA  600 MOR  6248.87  3896.58 Washington, DC
138    2 USA  615 ALG  6892.24  4297.55 Washington, DC
139    2 USA  616 TUN  7450.77  4646.00 Washington, DC
140    2 USA  620 LIB  7952.74  4959.10 Washington, DC
141    2 USA  625 SUD 10682.77  6660.95 Washington, DC
142    2 USA  630 IRN 10335.33  6444.81 Washington, DC
143    2 USA  640 TUR  8869.82  5530.76 Washington, DC
144    2 USA  645 IRQ 10087.88  6290.28 Washington, DC
145    2 USA  651 EGY  9448.55  5891.33 Washington, DC
146    2 USA  652 SYR  9564.70  5964.05 Washington, DC
147    2 USA  660 LEB  9505.11  5926.68 Washington, DC
148    2 USA  663 JOR  9693.98  6044.85 Washington, DC
149    2 USA  666 ISR  9543.49  5950.92 Washington, DC
150    2 USA  670 SAU 11007.99  6863.96 Washington, DC
151    2 USA  678 YAR 11571.57  7215.44 Washington, DC
152    2 USA  679 YEM 11571.57  7215.44 Washington, DC
153    2 USA  680 YPR 11875.58  7404.31 Washington, DC
154    2 USA  690 KUW 10659.54  6646.81 Washington, DC
155    2 USA  692 BAH 11127.17  6938.70 Washington, DC
156    2 USA  694 QAT 11169.59  6963.95 Washington, DC
157    2 USA  696 UAE 11501.88  7172.01 Washington, DC
158    2 USA  698 OMA 11832.15  7378.05 Washington, DC
159    2 USA  700 AFG 11295.84  7043.74 Washington, DC
160    2 USA  701 TKM 10511.07  6553.89 Washington, DC
161    2 USA  702 TAJ 10881.74  6785.18 Washington, DC
162    2 USA  703 KYR 10671.66  6653.88 Washington, DC
163    2 USA  704 UZB 10598.94  6609.44 Washington, DC
164    2 USA  705 KZK 10645.40  6637.72 Washington, DC
165    2 USA  710 CHN 11348.36  7076.06 Washington, DC
166    2 USA  711 TBT 12415.93  7741.65 Washington, DC
167    2 USA  712 MON 10549.45  6578.13 Washington, DC
168    2 USA  713 TAW 12774.48  7964.86 Washington, DC
169    2 USA  730 KOR 11330.18  7063.94 Washington, DC
170    2 USA  731 PRK 11156.46  6955.87 Washington, DC
171    2 USA  732 ROK 11330.18  7063.94 Washington, DC
172    2 USA  740 JPN 11069.60  6902.34 Washington, DC
173    2 USA  750 IND 12227.06  7623.48 Washington, DC
174    2 USA  760 BHU 12676.51  7904.26 Washington, DC
175    2 USA  770 PAK 11545.31  7199.28 Washington, DC
176    2 USA  771 BNG 13130.00  8187.06 Washington, DC
177    2 USA  775 MYA 13997.59  8727.41 Washington, DC
178    2 USA  780 SRI 14613.69  9112.22 Washington, DC
179    2 USA  790 NEP 12575.51  7841.64 Washington, DC
180    2 USA  781 MAD 14550.06  9072.83 Washington, DC
181    2 USA  800 THI 14369.27  8959.71 Washington, DC
182    2 USA  811 CAM 14598.54  9103.13 Washington, DC
183    2 USA  812 LAO 13924.87  8681.96 Washington, DC
184    2 USA  815 VNM 14622.78  9117.27 Washington, DC
185    2 USA  816 DRV 13480.47  8405.22 Washington, DC
186    2 USA  817 RVN 14622.78  9118.28 Washington, DC
187    2 USA  820 MAL 15503.50  9666.71 Washington, DC
188    2 USA  830 SIN 15727.72  9806.09 Washington, DC
189    2 USA  835 BRU 15190.40  9471.78 Washington, DC
190    2 USA  840 PHI 13972.34  8712.26 Washington, DC
191    2 USA  850 INS 16500.37 10288.87 Washington, DC
192    2 USA  860 ETM 16112.53 10046.47 Washington, DC
193    2 USA  900 AUL 16082.23 10028.29 Washington, DC
194    2 USA  910 PNG 14641.97  9129.39 Washington, DC
195    2 USA  920 NEW 14198.58  8852.65 Washington, DC
196    2 USA  935 VAN 13476.43  8403.20 Washington, DC
197    2 USA  940 SOL 13607.73  8485.01 Washington, DC
198    2 USA  950 FJI 12603.79  7858.81 Washington, DC
199    2 USA  983 MSI 11574.60  7216.45 Washington, DC
200    2 USA  986 PAL 14054.15  8762.76 Washington, DC
201    2 USA  987 FSM 12505.82  7798.21 Washington, DC
202    2 USA  990 WSM 12850.23  8012.33 Washington, DC
203    2 USA   20 CAN   738.31   460.56           <NA>
204    2 USA   31 BHM  1639.23  1022.12           <NA>
205    2 USA   40 CUB  1831.13  1141.30           <NA>
206    2 USA   41 HAI  2308.86  1439.25           <NA>
207    2 USA   42 DOM  2381.58  1485.71           <NA>
208    2 USA   51 JAM  2338.15  1458.44           <NA>
209    2 USA   52 TRI  3528.94  2200.79           <NA>
210    2 USA   53 BAR  3363.30  2096.76           <NA>
211    2 USA   54 DMA  3240.08  2021.01           <NA>
212    2 USA   55 GRN  3365.32  2098.78           <NA>
213    2 USA   56 SLU  3211.80  2002.83           <NA>
214    2 USA   57 SVG  3272.40  2040.20           <NA>
215    2 USA   58 AAB  2862.34  1784.67           <NA>
216    2 USA   60 SKN  2787.60  1738.21           <NA>
217    2 USA   80 BLZ  2632.06  1641.25           <NA>
218    2 USA   70 MEX  3054.24  1903.85           <NA>
219    2 USA   90 GUA  3022.93  1884.66           <NA>
220    2 USA   91 HON  2951.22  1840.22           <NA>
221    2 USA   92 SAL  3054.24  1904.86           <NA>
222    2 USA   93 NIC  3134.03  1954.35           <NA>
223    2 USA   94 COS  3314.82  2067.47           <NA>
224    2 USA   95 PAN  3358.25  2093.73           <NA>
225    2 USA  100 COL  3846.08  2397.74           <NA>
226    2 USA  101 VEN  3382.49  2108.88           <NA>
227    2 USA  110 GUY  4049.09  2525.00           <NA>
228    2 USA  115 SUR  4315.73  2690.64           <NA>
229    2 USA  130 ECU  4357.14  2716.90           <NA>
230    2 USA  135 PER  5707.51  3558.23           <NA>
231    2 USA  140 BRA  6789.22  4233.92           <NA>
232    2 USA  145 BOL  6231.70  3885.47           <NA>
233    2 USA  150 PAR  7456.83  4650.04           <NA>
234    2 USA  155 CHL  8095.15  5046.97           <NA>
235    2 USA  160 ARG  8401.18  5238.87           <NA>
236    2 USA  165 URU  8465.82  5278.26           <NA>
237    2 USA  200  UK  5991.32  3735.99           <NA>
238    2 USA  205 IRE  5499.45  3428.95           <NA>
239    2 USA  210 NTH  6259.98  3903.65           <NA>
240    2 USA  211 BEL  6308.46  3932.94           <NA>
241    2 USA  212 LUX  6444.81  4018.79           <NA>
242    2 USA  220 FRN  6255.94  3900.62           <NA>
243    2 USA  221 MNC  6819.52  4252.10           <NA>
244    2 USA  223 LIE  6794.27  4236.95           <NA>
245    2 USA  225 SWZ  6695.29  4175.34           <NA>
246    2 USA  230 SPN  6166.05  3844.06           <NA>
247    2 USA  232 AND  6446.83  4019.80           <NA>
248    2 USA  235 POR  5816.59  3626.91           <NA>
249    2 USA  255 GMY  6806.39  4244.02           <NA>
250    2 USA  260 GFR  6496.32  4051.11           <NA>
251    2 USA  265 GDR  6806.39  4244.02           <NA>
252    2 USA  290 POL  7268.97  4532.88           <NA>
253    2 USA  300 AUH  7201.30  4490.46           <NA>
254    2 USA  305 AUS  7201.30  4490.46           <NA>
255    2 USA  310 HUN  7441.68  4639.94           <NA>
256    2 USA  315 CZE  6974.05  4348.05           <NA>
257    2 USA  316 CZR  6974.05  4348.05           <NA>
258    2 USA  317 SLO  7254.83  4523.79           <NA>
259    2 USA  325 ITA  7345.73  4580.35           <NA>
260    2 USA  331 SNM  7175.04  4474.30           <NA>
261    2 USA  338 MLT  7804.27  4866.18           <NA>
262    2 USA  339 ALB  7854.77  4897.49           <NA>
263    2 USA  345 SER  7711.35  4807.60           <NA>
264    2 USA  341 MNG  7730.54  4820.73           <NA>
265    2 USA  343 MAC  7911.33  4932.84           <NA>
266    2 USA  344 CRO  7347.75  4581.36           <NA>
267    2 USA  345 YUG  7711.35  4807.60           <NA>
268    2 USA  346 BOS  7637.62  4762.15           <NA>
269    2 USA  349 SLV  7193.22  4485.41           <NA>
270    2 USA  350 GRC  8326.44  5192.41           <NA>
271    2 USA  352 CYP  9210.19  5742.86           <NA>
272    2 USA  355 BUL  8031.52  5007.58           <NA>
273    2 USA  359 MLD  8049.70  5018.69           <NA>
274    2 USA  360 RUM  8086.06  5041.92           <NA>
275    2 USA  365 RUS  7951.73  4958.09           <NA>
276    2 USA  366 EST  7050.81  4396.53           <NA>
277    2 USA  367 LAT  7197.26  4488.44           <NA>
278    2 USA  368 LIT  7393.20  4609.64           <NA>
279    2 USA  369 UKR  7936.58  4949.00           <NA>
280    2 USA  370 BLR  7575.00  4722.76           <NA>
281    2 USA  371 ARM  9512.18  5930.72           <NA>
282    2 USA  372 GRG  9527.33  5940.82           <NA>
283    2 USA  373 AZE  9805.08  6113.53           <NA>
284    2 USA  375 FIN  7003.34  4367.24           <NA>
285    2 USA  380 SWD  6713.47  4186.45           <NA>
286    2 USA  385 NOR  6322.60  3942.03           <NA>
287    2 USA  390 DEN  6600.35  4115.75           <NA>
288    2 USA  395 ICE  4571.26  2850.22           <NA>
289    2 USA  402 CAP  5772.15  3599.64           <NA>
290    2 USA  403 STP  9506.12  5927.69           <NA>
291    2 USA  404 GNB  6828.61  4258.16           <NA>
292    2 USA  411 EQG  9698.02  6046.87           <NA>
293    2 USA  420 GAM  6605.40  4118.78           <NA>
294    2 USA  432 MLI  7426.53  4630.85           <NA>
295    2 USA  433 SEN  6464.00  4030.91           <NA>
296    2 USA  434 BEN  8772.86  5470.16           <NA>
297    2 USA  435 MAA  6332.70  3948.09           <NA>
298    2 USA  436 NIR  8247.66  5142.92           <NA>
299    2 USA  437 CDI  8073.94  5033.84           <NA>
300    2 USA  438 GUI  7143.73  4454.10           <NA>
301    2 USA  439 BFO  7996.17  4986.37           <NA>
302    2 USA  450 LBR  7602.27  4739.93           <NA>
303    2 USA  451 SIE  7243.72  4516.72           <NA>
304    2 USA  452 GHA  8625.40  5378.25           <NA>
305    2 USA  461 TOG  8644.59  5390.37           <NA>
306    2 USA  471 CAO  9753.57  6081.21           <NA>
307    2 USA  475 NIG  8831.44  5506.52           <NA>
308    2 USA  481 GAB  9792.96  6106.46           <NA>
309    2 USA  482 CEN 10311.09  6429.66           <NA>
310    2 USA  483 CHA  9431.38  5881.23           <NA>
311    2 USA  484 CON 10588.84  6602.37           <NA>
312    2 USA  490 DRC 10588.84  6602.37           <NA>
313    2 USA  500 UGA 11790.74  7351.79           <NA>
314    2 USA  501 KEN 12237.16  7629.54           <NA>
315    2 USA  510 TAZ 12817.91  7992.13           <NA>
316    2 USA  511 ZAN 12812.86  7989.10           <NA>
317    2 USA  516 BUI 11739.23  7319.47           <NA>
318    2 USA  517 RWA 11672.57  7278.06           <NA>
319    2 USA  520 SOM 12707.82  7923.45           <NA>
320    2 USA  522 DJI 11770.54  7339.67           <NA>
321    2 USA  530 ETH 11628.13  7249.78           <NA>
322    2 USA  531 ERI 11151.41  6952.84           <NA>
323    2 USA  540 ANG 10683.78  6661.96           <NA>
324    2 USA  541 MZM 13537.03  8440.57           <NA>
325    2 USA  551 ZAM 12498.75  7793.16           <NA>
326    2 USA  552 ZIM 12848.21  8011.32           <NA>
327    2 USA  553 MAW 12816.90  7992.13           <NA>
328    2 USA  560 SAF 13118.89  8179.99           <NA>
329    2 USA  563 TRA 13118.89  8179.99           <NA>
330    2 USA  564 OFS 13178.48  8217.36           <NA>
331    2 USA  565 NAM 11976.58  7467.94           <NA>
332    2 USA  570 LES 13254.23  8264.83           <NA>
333    2 USA  571 BOT 12857.30  8016.37           <NA>
334    2 USA  572 SWA 13419.87  8367.85           <NA>
335    2 USA  580 MAG 14367.25  8958.70           <NA>
336    2 USA  581 COM 13516.83  8427.44           <NA>
337    2 USA  590 MAS 15357.05  9575.81           <NA>
338    2 USA  591 SEY 14051.12  8761.75           <NA>
339    2 USA  600 MOR  6248.87  3896.58           <NA>
340    2 USA  615 ALG  6892.24  4297.55           <NA>
341    2 USA  616 TUN  7450.77  4646.00           <NA>
342    2 USA  620 LIB  7952.74  4959.10           <NA>
343    2 USA  625 SUD 10682.77  6660.95           <NA>
344    2 USA  630 IRN 10335.33  6444.81           <NA>
345    2 USA  640 TUR  8869.82  5530.76           <NA>
346    2 USA  645 IRQ 10087.88  6290.28           <NA>
347    2 USA  651 EGY  9448.55  5891.33           <NA>
348    2 USA  652 SYR  9564.70  5964.05           <NA>
349    2 USA  660 LEB  9505.11  5926.68           <NA>
350    2 USA  663 JOR  9693.98  6044.85           <NA>
351    2 USA  666 ISR  9543.49  5950.92           <NA>
352    2 USA  670 SAU 11007.99  6863.96           <NA>
353    2 USA  678 YAR 11571.57  7215.44           <NA>
354    2 USA  679 YEM 11571.57  7215.44           <NA>
355    2 USA  680 YPR 11875.58  7404.31           <NA>
356    2 USA  690 KUW 10659.54  6646.81           <NA>
357    2 USA  692 BAH 11127.17  6938.70           <NA>
358    2 USA  694 QAT 11169.59  6963.95           <NA>
359    2 USA  696 UAE 11501.88  7172.01           <NA>
360    2 USA  698 OMA 11832.15  7378.05           <NA>
361    2 USA  700 AFG 11295.84  7043.74           <NA>
362    2 USA  701 TKM 10511.07  6553.89           <NA>
363    2 USA  702 TAJ 10881.74  6785.18           <NA>
364    2 USA  703 KYR 10671.66  6653.88           <NA>
365    2 USA  704 UZB 10598.94  6609.44           <NA>
366    2 USA  705 KZK 10645.40  6637.72           <NA>
367    2 USA  710 CHN 11348.36  7076.06           <NA>
368    2 USA  711 TBT 12415.93  7741.65           <NA>
369    2 USA  712 MON 10549.45  6578.13           <NA>
370    2 USA  713 TAW 12774.48  7964.86           <NA>
371    2 USA  730 KOR 11330.18  7063.94           <NA>
372    2 USA  731 PRK 11156.46  6955.87           <NA>
373    2 USA  732 ROK 11330.18  7063.94           <NA>
374    2 USA  740 JPN 11069.60  6902.34           <NA>
375    2 USA  750 IND 12227.06  7623.48           <NA>
376    2 USA  760 BHU 12676.51  7904.26           <NA>
377    2 USA  770 PAK 11545.31  7199.28           <NA>
378    2 USA  771 BNG 13130.00  8187.06           <NA>
379    2 USA  775 MYA 13997.59  8727.41           <NA>
380    2 USA  780 SRI 14613.69  9112.22           <NA>
381    2 USA  790 NEP 12575.51  7841.64           <NA>
382    2 USA  781 MAD 14550.06  9072.83           <NA>
383    2 USA  800 THI 14369.27  8959.71           <NA>
384    2 USA  811 CAM 14598.54  9103.13           <NA>
385    2 USA  812 LAO 13924.87  8681.96           <NA>
386    2 USA  815 VNM 14622.78  9117.27           <NA>
387    2 USA  816 DRV 13480.47  8405.22           <NA>
388    2 USA  817 RVN 14622.78  9118.28           <NA>
389    2 USA  820 MAL 15503.50  9666.71           <NA>
390    2 USA  830 SIN 15727.72  9806.09           <NA>
391    2 USA  835 BRU 15190.40  9471.78           <NA>
392    2 USA  840 PHI 13972.34  8712.26           <NA>
393    2 USA  850 INS 16500.37 10288.87           <NA>
394    2 USA  860 ETM 16112.53 10046.47           <NA>
395    2 USA  900 AUL 16082.23 10028.29           <NA>
396    2 USA  910 PNG 14641.97  9129.39           <NA>
397    2 USA  920 NEW 14198.58  8852.65           <NA>
398    2 USA  935 VAN 13476.43  8403.20           <NA>
399    2 USA  940 SOL 13607.73  8485.01           <NA>
400    2 USA  950 FJI 12603.79  7858.81           <NA>
401    2 USA  983 MSI 11574.60  7216.45           <NA>
402    2 USA  986 PAL 14054.15  8762.76           <NA>
403    2 USA  987 FSM 12505.82  7798.21           <NA>
404    2 USA  990 WSM 12850.23  8012.33           <NA>
405    2 USA   20 CAN   738.31   460.56           <NA>
406    2 USA   31 BHM  1639.23  1022.12           <NA>
407    2 USA   40 CUB  1831.13  1141.30           <NA>
408    2 USA   41 HAI  2308.86  1439.25           <NA>
409    2 USA   42 DOM  2381.58  1485.71           <NA>
410    2 USA   51 JAM  2338.15  1458.44           <NA>
411    2 USA   52 TRI  3528.94  2200.79           <NA>
412    2 USA   53 BAR  3363.30  2096.76           <NA>
413    2 USA   54 DMA  3240.08  2021.01           <NA>
414    2 USA   55 GRN  3365.32  2098.78           <NA>
415    2 USA   56 SLU  3211.80  2002.83           <NA>
416    2 USA   57 SVG  3272.40  2040.20           <NA>
417    2 USA   58 AAB  2862.34  1784.67           <NA>
418    2 USA   60 SKN  2787.60  1738.21           <NA>
419    2 USA   80 BLZ  2632.06  1641.25           <NA>
420    2 USA   70 MEX  3054.24  1903.85           <NA>
421    2 USA   90 GUA  3022.93  1884.66           <NA>
422    2 USA   91 HON  2951.22  1840.22           <NA>
423    2 USA   92 SAL  3054.24  1904.86           <NA>
424    2 USA   93 NIC  3134.03  1954.35           <NA>
425    2 USA   94 COS  3314.82  2067.47           <NA>
426    2 USA   95 PAN  3358.25  2093.73           <NA>
427    2 USA  100 COL  3846.08  2397.74           <NA>
428    2 USA  101 VEN  3382.49  2108.88           <NA>
429    2 USA  110 GUY  4049.09  2525.00           <NA>
430    2 USA  115 SUR  4315.73  2690.64           <NA>
431    2 USA  130 ECU  4357.14  2716.90           <NA>
432    2 USA  135 PER  5707.51  3558.23           <NA>
433    2 USA  140 BRA  6789.22  4233.92           <NA>
434    2 USA  145 BOL  6231.70  3885.47           <NA>
435    2 USA  150 PAR  7456.83  4650.04           <NA>
436    2 USA  155 CHL  8095.15  5046.97           <NA>
437    2 USA  160 ARG  8401.18  5238.87           <NA>
438    2 USA  165 URU  8465.82  5278.26           <NA>
439    2 USA  200  UK  5991.32  3735.99           <NA>
440    2 USA  205 IRE  5499.45  3428.95           <NA>
441    2 USA  210 NTH  6259.98  3903.65           <NA>
442    2 USA  211 BEL  6308.46  3932.94           <NA>
443    2 USA  212 LUX  6444.81  4018.79           <NA>
444    2 USA  220 FRN  6255.94  3900.62           <NA>
445    2 USA  221 MNC  6819.52  4252.10           <NA>
446    2 USA  223 LIE  6794.27  4236.95           <NA>
447    2 USA  225 SWZ  6695.29  4175.34           <NA>
448    2 USA  230 SPN  6166.05  3844.06           <NA>
449    2 USA  232 AND  6446.83  4019.80           <NA>
450    2 USA  235 POR  5816.59  3626.91           <NA>
451    2 USA  255 GMY  6806.39  4244.02           <NA>
452    2 USA  260 GFR  6496.32  4051.11           <NA>
453    2 USA  265 GDR  6806.39  4244.02           <NA>
454    2 USA  290 POL  7268.97  4532.88           <NA>
455    2 USA  300 AUH  7201.30  4490.46           <NA>
456    2 USA  305 AUS  7201.30  4490.46           <NA>
457    2 USA  310 HUN  7441.68  4639.94           <NA>
458    2 USA  315 CZE  6974.05  4348.05           <NA>
459    2 USA  316 CZR  6974.05  4348.05           <NA>
460    2 USA  317 SLO  7254.83  4523.79           <NA>
461    2 USA  325 ITA  7345.73  4580.35           <NA>
462    2 USA  331 SNM  7175.04  4474.30           <NA>
463    2 USA  338 MLT  7804.27  4866.18           <NA>
464    2 USA  339 ALB  7854.77  4897.49           <NA>
465    2 USA  345 SER  7711.35  4807.60           <NA>
466    2 USA  341 MNG  7730.54  4820.73           <NA>
467    2 USA  343 MAC  7911.33  4932.84           <NA>
468    2 USA  344 CRO  7347.75  4581.36           <NA>
469    2 USA  345 YUG  7711.35  4807.60           <NA>
470    2 USA  346 BOS  7637.62  4762.15           <NA>
471    2 USA  349 SLV  7193.22  4485.41           <NA>
472    2 USA  350 GRC  8326.44  5192.41           <NA>
473    2 USA  352 CYP  9210.19  5742.86           <NA>
474    2 USA  355 BUL  8031.52  5007.58           <NA>
475    2 USA  359 MLD  8049.70  5018.69           <NA>
476    2 USA  360 RUM  8086.06  5041.92           <NA>
477    2 USA  365 RUS  7951.73  4958.09           <NA>
478    2 USA  366 EST  7050.81  4396.53           <NA>
479    2 USA  367 LAT  7197.26  4488.44           <NA>
480    2 USA  368 LIT  7393.20  4609.64           <NA>
481    2 USA  369 UKR  7936.58  4949.00           <NA>
482    2 USA  370 BLR  7575.00  4722.76           <NA>
483    2 USA  371 ARM  9512.18  5930.72           <NA>
484    2 USA  372 GRG  9527.33  5940.82           <NA>
485    2 USA  373 AZE  9805.08  6113.53           <NA>
486    2 USA  375 FIN  7003.34  4367.24           <NA>
487    2 USA  380 SWD  6713.47  4186.45           <NA>
488    2 USA  385 NOR  6322.60  3942.03           <NA>
489    2 USA  390 DEN  6600.35  4115.75           <NA>
490    2 USA  395 ICE  4571.26  2850.22           <NA>
491    2 USA  402 CAP  5772.15  3599.64           <NA>
492    2 USA  403 STP  9506.12  5927.69           <NA>
493    2 USA  404 GNB  6828.61  4258.16           <NA>
494    2 USA  411 EQG  9698.02  6046.87           <NA>
495    2 USA  420 GAM  6605.40  4118.78           <NA>
496    2 USA  432 MLI  7426.53  4630.85           <NA>
497    2 USA  433 SEN  6464.00  4030.91           <NA>
498    2 USA  434 BEN  8772.86  5470.16           <NA>
499    2 USA  435 MAA  6332.70  3948.09           <NA>
500    2 USA  436 NIR  8247.66  5142.92           <NA>
501    2 USA  437 CDI  8073.94  5033.84           <NA>
502    2 USA  438 GUI  7143.73  4454.10           <NA>
503    2 USA  439 BFO  7996.17  4986.37           <NA>
504    2 USA  450 LBR  7602.27  4739.93           <NA>
505    2 USA  451 SIE  7243.72  4516.72           <NA>
506    2 USA  452 GHA  8625.40  5378.25           <NA>
507    2 USA  461 TOG  8644.59  5390.37           <NA>
508    2 USA  471 CAO  9753.57  6081.21           <NA>
509    2 USA  475 NIG  8831.44  5506.52           <NA>
510    2 USA  481 GAB  9792.96  6106.46           <NA>
511    2 USA  482 CEN 10311.09  6429.66           <NA>
512    2 USA  483 CHA  9431.38  5881.23           <NA>
513    2 USA  484 CON 10588.84  6602.37           <NA>
514    2 USA  490 DRC 10588.84  6602.37           <NA>
515    2 USA  500 UGA 11790.74  7351.79           <NA>
516    2 USA  501 KEN 12237.16  7629.54           <NA>
517    2 USA  510 TAZ 12817.91  7992.13           <NA>
518    2 USA  511 ZAN 12812.86  7989.10           <NA>
519    2 USA  516 BUI 11739.23  7319.47           <NA>
520    2 USA  517 RWA 11672.57  7278.06           <NA>
521    2 USA  520 SOM 12707.82  7923.45           <NA>
522    2 USA  522 DJI 11770.54  7339.67           <NA>
523    2 USA  530 ETH 11628.13  7249.78           <NA>
524    2 USA  531 ERI 11151.41  6952.84           <NA>
525    2 USA  540 ANG 10683.78  6661.96           <NA>
526    2 USA  541 MZM 13537.03  8440.57           <NA>
527    2 USA  551 ZAM 12498.75  7793.16           <NA>
528    2 USA  552 ZIM 12848.21  8011.32           <NA>
529    2 USA  553 MAW 12816.90  7992.13           <NA>
530    2 USA  560 SAF 13118.89  8179.99           <NA>
531    2 USA  563 TRA 13118.89  8179.99           <NA>
532    2 USA  564 OFS 13178.48  8217.36           <NA>
533    2 USA  565 NAM 11976.58  7467.94           <NA>
534    2 USA  570 LES 13254.23  8264.83           <NA>
535    2 USA  571 BOT 12857.30  8016.37           <NA>
536    2 USA  572 SWA 13419.87  8367.85           <NA>
537    2 USA  580 MAG 14367.25  8958.70           <NA>
538    2 USA  581 COM 13516.83  8427.44           <NA>
539    2 USA  590 MAS 15357.05  9575.81           <NA>
540    2 USA  591 SEY 14051.12  8761.75           <NA>
541    2 USA  600 MOR  6248.87  3896.58           <NA>
542    2 USA  615 ALG  6892.24  4297.55           <NA>
543    2 USA  616 TUN  7450.77  4646.00           <NA>
544    2 USA  620 LIB  7952.74  4959.10           <NA>
545    2 USA  625 SUD 10682.77  6660.95           <NA>
546    2 USA  630 IRN 10335.33  6444.81           <NA>
547    2 USA  640 TUR  8869.82  5530.76           <NA>
548    2 USA  645 IRQ 10087.88  6290.28           <NA>
549    2 USA  651 EGY  9448.55  5891.33           <NA>
550    2 USA  652 SYR  9564.70  5964.05           <NA>
551    2 USA  660 LEB  9505.11  5926.68           <NA>
552    2 USA  663 JOR  9693.98  6044.85           <NA>
553    2 USA  666 ISR  9543.49  5950.92           <NA>
554    2 USA  670 SAU 11007.99  6863.96           <NA>
555    2 USA  678 YAR 11571.57  7215.44           <NA>
556    2 USA  679 YEM 11571.57  7215.44           <NA>
557    2 USA  680 YPR 11875.58  7404.31           <NA>
558    2 USA  690 KUW 10659.54  6646.81           <NA>
559    2 USA  692 BAH 11127.17  6938.70           <NA>
560    2 USA  694 QAT 11169.59  6963.95           <NA>
561    2 USA  696 UAE 11501.88  7172.01           <NA>
562    2 USA  698 OMA 11832.15  7378.05           <NA>
563    2 USA  700 AFG 11295.84  7043.74           <NA>
564    2 USA  701 TKM 10511.07  6553.89           <NA>
565    2 USA  702 TAJ 10881.74  6785.18           <NA>
566    2 USA  703 KYR 10671.66  6653.88           <NA>
567    2 USA  704 UZB 10598.94  6609.44           <NA>
568    2 USA  705 KZK 10645.40  6637.72           <NA>
569    2 USA  710 CHN 11348.36  7076.06           <NA>
570    2 USA  711 TBT 12415.93  7741.65           <NA>
571    2 USA  712 MON 10549.45  6578.13           <NA>
572    2 USA  713 TAW 12774.48  7964.86           <NA>
573    2 USA  730 KOR 11330.18  7063.94           <NA>
574    2 USA  731 PRK 11156.46  6955.87           <NA>
575    2 USA  732 ROK 11330.18  7063.94           <NA>
576    2 USA  740 JPN 11069.60  6902.34           <NA>
577    2 USA  750 IND 12227.06  7623.48           <NA>
578    2 USA  760 BHU 12676.51  7904.26           <NA>
579    2 USA  770 PAK 11545.31  7199.28           <NA>
580    2 USA  771 BNG 13130.00  8187.06           <NA>
581    2 USA  775 MYA 13997.59  8727.41           <NA>
582    2 USA  780 SRI 14613.69  9112.22           <NA>
583    2 USA  790 NEP 12575.51  7841.64           <NA>
584    2 USA  781 MAD 14550.06  9072.83           <NA>
585    2 USA  800 THI 14369.27  8959.71           <NA>
586    2 USA  811 CAM 14598.54  9103.13           <NA>
587    2 USA  812 LAO 13924.87  8681.96           <NA>
588    2 USA  815 VNM 14622.78  9117.27           <NA>
589    2 USA  816 DRV 13480.47  8405.22           <NA>
590    2 USA  817 RVN 14622.78  9118.28           <NA>
591    2 USA  820 MAL 15503.50  9666.71           <NA>
592    2 USA  830 SIN 15727.72  9806.09           <NA>
593    2 USA  835 BRU 15190.40  9471.78           <NA>
594    2 USA  840 PHI 13972.34  8712.26           <NA>
595    2 USA  850 INS 16500.37 10288.87           <NA>
596    2 USA  860 ETM 16112.53 10046.47           <NA>
597    2 USA  900 AUL 16082.23 10028.29           <NA>
598    2 USA  910 PNG 14641.97  9129.39           <NA>
599    2 USA  920 NEW 14198.58  8852.65           <NA>
600    2 USA  935 VAN 13476.43  8403.20           <NA>
601    2 USA  940 SOL 13607.73  8485.01           <NA>
602    2 USA  950 FJI 12603.79  7858.81           <NA>
603    2 USA  983 MSI 11574.60  7216.45           <NA>
604    2 USA  986 PAL 14054.15  8762.76           <NA>
605    2 USA  987 FSM 12505.82  7798.21           <NA>
606    2 USA  990 WSM 12850.23  8012.33           <NA>

Files as databases: Why?

  • when working with larger datasets, the available memory of your computer becomes an issue
  • “big data” is often defined as datasets larger than your memory
  • in these cases you have three choices
  1. Let each Quarto file do less (and break up tasks into more files)
  2. Chunk your analysis. Often, you can perform analysis or pre-processing on one subset of the data after the other and combine the results
  3. Get better hardware or use cloud computing (both are expensive, but possible)

Files as databases: How?

Let’s have a look at 2. since it might not be entirely clear. Let’s get a big file first:

corp_hoc <- "data/Corp_HouseOfCommons_V2.rds"
if (!file.exists(corp_hoc)) {
  library(dataverse)
  Sys.setenv("DATAVERSE_SERVER" = "dataverse.harvard.edu")
  # get dataset by doi
  ds <- get_dataset("doi:10.7910/DVN/L4OAKN")
  # you can inspect that object with
  # as_tibble(ds[["files"]][, c("label", "id")])
  
  url <- get_file(3758859L, 
                  dataset = "doi:10.7910/DVN/ZY3RV7",
                  return_url = TRUE)
  
  
  curl::curl_download(url, destfile = corp_hoc, quiet = FALSE)
}
corp_hoc_df <- readRDS(corp_hoc) |> 
  mutate(date = as.Date(date))

Let’s say this was not stored as one file, but a collection of CSV files:

if (!dir.exists("data/house_of_commons")) {
  # I split this into file just for demonstration purposes
  corp_hoc_list <- split(corp_hoc_df, corp_hoc_df$party)
  dir.create("data/house_of_commons")
  for (party in names(corp_hoc_list)) {
    rio::export(corp_hoc_list[[party]], paste0("data/house_of_commons/", party, ".csv"))
  }
}
list.files("data/house_of_commons")
 [1] "APNI.csv"                      "Birkenhead Social Justice.csv"
 [3] "Change UK.csv"                 "Con.csv"                      
 [5] "DUP.csv"                       "GPEW.csv"                     
 [7] "Independent.csv"               "Lab.csv"                      
 [9] "LibDem.csv"                    "other.csv"                    
[11] "PlaidCymru.csv"                "Referendum.csv"               
[13] "Respect.csv"                   "SDLP.csv"                     
[15] "SDP.csv"                       "SNP.csv"                      
[17] "The Independents.csv"          "UKIP.csv"                     
[19] "UKUP.csv"                      "UPUP.csv"                     
[21] "UUP.csv"                      

Files as databases: How?

We could read all of them in and combine them, like above. Or we can use arrow to treat them as a database:

library(arrow)
corp_hoc_con <- open_dataset(sources = "data/house_of_commons",
                             format = "csv")

The corp_hoc_con is way smaller than the actual data object:

object.size(corp_hoc_con)
504 bytes
object.size(corp_hoc_df) |> 
  format(units = "MB")
[1] "2269.5 Mb"

Yet we can still treat it like a normal data.frame:

corp_hoc_con |> 
  mutate(date = as.Date(date)) |> 
  filter(date >= "2000-01-01",
         date < "2001-01-01") |> 
  select(party) |> 
  collect() |>                 # special function when working with DBs
  count(party, sort = TRUE)
# A tibble: 11 × 2
   party           n
   <chr>       <int>
 1 Lab         31786
 2 Con         21703
 3 LibDem       5370
 4 UUP           842
 5 PlaidCymru    373
 6 other         140
 7 SNP           119
 8 Independent    85
 9 DUP            67
10 SDLP           64
11 UKUP           56

The only difference is that we have to call collect at some point, to load the data into memory. Since we can filter it though, the memory footprint will still be much smaller.

Exercises 3

  1. When might it make sense to treat a folder full of files as a database?
  2. When could it make sense to save data in an arrow database full of csv files?
  3. arrow also supports a file format called Parquet. Using it instead of CSV files increases speed and reduces file sizes, while it is also widely used by other languages and programs. Create a new folder where you store the Houses of Commons data in one file per speaker (hint read ?arrow::write_parquet first).
  4. Connect to the “database” of Parquet files and make a plot showing how many entries there are over the years per party.

Collaborative working

Git

  • git was developed for collaborative work on software
  • it is excellently suited for research projects as well!
  • you can get a free Github premium account with your university address
  • this enables you to have private repositories (otherwise all repositories are public)
  • widely used system with good learning materials, for example: Bryan, STAT 545 TAs, and Hester (2017)

-> GitHub is for code though, not data!

Google Sheets

Google sheets is a free service by Google–which can be controlled from R!

library(googlesheets4)
# write
write_sheet(gss_cat, "gs4-test")
# read
cats_df <- read_sheet("https://docs.google.com/spreadsheets/d/1XdqfPXrZCTim156m8SteKG_teOgj9AJLcAHOMrV_wfI/edit?usp=sharing")
# update
cats_df_updated <- cats_df |> 
  add_case(
    year = 2000,
    marital = "Never married", 
    age = 26, 
    race = "White", 
    rincome = "$8000 to 9999", 
    partyid = "Ind,near rep", 
    relig = "Protestant", 
    denom = "Southern baptist", 
    tvhours = 12
  )
write_sheet(cats_df_updated, ss = "https://docs.google.com/spreadsheets/d/1XdqfPXrZCTim156m8SteKG_teOgj9AJLcAHOMrV_wfI/edit?usp=sharing", sheet = "gss_cat_updated")

Data storage alternatives

  1. Whatever your university provides
  2. Dropbox, OneDrive, Box, etc
  3. Self hosted services like Nextcloud, Owncloud, etc.

Pitfalls:

  • always back up your data (3-2-1 backup strategy)!
  • think about who you give access
  • make sure to not work on the same file at the same time as someone else

Exercises 4

  1. If you have a Google account, try to upload and download some data to Google Sheets

Wrap Up

Save some information about the session for reproducibility.

Show Session Info
sessionInfo()
R version 4.5.1 (2025-06-13)
Platform: x86_64-pc-linux-gnu
Running under: EndeavourOS

Matrix products: default
BLAS:   /usr/lib/libblas.so.3.12.0 
LAPACK: /usr/lib/liblapack.so.3.12.0  LAPACK version 3.12.0

locale:
 [1] LC_CTYPE=en_GB.UTF-8       LC_NUMERIC=C              
 [3] LC_TIME=en_GB.UTF-8        LC_COLLATE=en_GB.UTF-8    
 [5] LC_MONETARY=en_GB.UTF-8    LC_MESSAGES=en_GB.UTF-8   
 [7] LC_PAPER=en_GB.UTF-8       LC_NAME=C                 
 [9] LC_ADDRESS=C               LC_TELEPHONE=C            
[11] LC_MEASUREMENT=en_GB.UTF-8 LC_IDENTIFICATION=C       

time zone: Europe/Berlin
tzcode source: system (glibc)

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
 [1] arrow_20.0.0.2  lubridate_1.9.4 forcats_1.0.0   stringr_1.5.1  
 [5] dplyr_1.1.4     purrr_1.0.4     readr_2.1.5     tidyr_1.3.1    
 [9] tibble_3.3.0    ggplot2_3.5.1   tidyverse_2.0.0 tinytable_0.8.0

loaded via a namespace (and not attached):
 [1] bit_4.6.0         gtable_0.3.6      jsonlite_2.0.0    compiler_4.5.1   
 [5] tidyselect_1.2.1  assertthat_0.2.1  scales_1.3.0      yaml_2.3.10      
 [9] fastmap_1.2.0     R6_2.6.1          generics_0.1.3    knitr_1.50       
[13] munsell_0.5.1     pillar_1.10.2     tzdb_0.5.0        rlang_1.1.6      
[17] utf8_1.2.6        stringi_1.8.7     xfun_0.52         bit64_4.6.0-1    
[21] timechange_0.3.0  cli_3.6.5         withr_3.0.2       magrittr_2.0.3   
[25] digest_0.6.37     grid_4.5.1        rstudioapi_0.17.1 hms_1.1.3        
[29] lifecycle_1.0.4   vctrs_0.6.5       evaluate_1.0.3    glue_1.8.0       
[33] codetools_0.2-20  colorspace_2.1-1  rmarkdown_2.29    tools_4.5.1      
[37] pkgconfig_2.0.3   htmltools_0.5.8.1

Reminder: Social Programme

DATE Event Time Venue
MONDAY 7 July Meet and Greet - in person 19:00 start SU Bar
TUESDAY 8 July Climbing 18:30 start Sports Centre
WEDNESDAY 9 July Harold Clarke Speaker Series - hybrid 18:45 - 20.00 EBS
THURSDAY 10 July Sports Night 18:30 - 20:30 Sports Centre
FRIDAY 11 July Wivenhoe Pub Run 18:30 start Wivenhoe pubs
MONDAY 14 JULY SU bar Quiz 19:00 start SU Bar
TUESDAY 15 JULY Sports Night 18:30 - 20:30 Sports Centre
WEDNESDAY 16 JULY Harold Clarke Speaker Series - hybrid 18:30 EBS
THURSDAY 17 JULY Farewell Party Karaoke 20:30 - 23:30 SU Bar

References

Bryan, Jenny, STAT 545 TAs, and Jim Hester. 2017. “Happy Git and GitHub for the useR.” https://happygitwithr.com/.
Weidmann, Nils B. 2023. Data Management for Social Scientists: From Files to Databases. 1st ed. Cambridge University Press. https://doi.org/10.1017/9781108990424.